码迷,mamicode.com
首页 >  
搜索关键字:android学习笔记    ( 749个结果
[Android学习笔记]try-catch
private boolean test() { boolean result = true; String str = null; try { Log.d("test","出现异常之前"); int length...
分类:移动开发   时间:2014-12-22 15:50:47    阅读次数:162
Android学习笔记之AutoCompleteTextView自动填充功能的案例
(1)首先实现AutoCompleteTextView功能所需要的适配器数据源共有两种方法,一种结果是手工配置的,另一汇总是通过xml文件制定的数据(当然也可以通过网上资源获得) 这里只讲前两种! (2)布局的页面代码都一样如下: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xm...
分类:移动开发   时间:2014-12-21 22:14:18    阅读次数:186
Android学习笔记之RadioButton的使用详解
(1)选用radioGroup的图标 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:la...
分类:移动开发   时间:2014-12-21 19:29:37    阅读次数:226
Android学习笔记之Switch的使用案例
(1)布局文件代码 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_heig...
分类:移动开发   时间:2014-12-21 19:26:12    阅读次数:140
Android学习笔记之GridView的使用详解
(1)创建布局代码如下: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_h...
分类:移动开发   时间:2014-12-21 16:41:20    阅读次数:203
android学习笔记 对话框合集
package com.zhangbz.dialog;import android.app.Activity;import android.app.AlertDialog;import android.app.AlertDialog.Builder;import android.app.Progre...
分类:移动开发   时间:2014-12-10 00:25:33    阅读次数:236
Android学习笔记
本文只做学习记录,不做教程,所以没一点都只是简单的记录。有疑问或建议可留言讨论 一、预备知识 Android的四层体系结构啥的大概了解了一下,我们写Android程序,都是基于系统给我们的api进行编程的。而系统给的api,需要安装sdk才能使用(这是我个人理解的),所以,为了编程方便,我们搭建eclipse环境,然后安装adt插件,配置sdk后,用eclipse进行编程即可。 二、环境搭建...
分类:移动开发   时间:2014-12-07 15:06:59    阅读次数:143
android学习笔记 Service
Service(服务): 长期后台运行的没有界面的组件android应用什么地方需要用到服务?天气预报:后台的连接服务器的逻辑,每隔一段时间获取最新的天气信息。股票显示:后台的连接服务器的逻辑,每隔一段时间获取最新的股票信息。mp3播放器: 后台长期的播放音乐。-------------------...
分类:移动开发   时间:2014-12-06 22:50:43    阅读次数:354
android学习笔记 activity生命周期&任务栈&activity启动模式
activity生命周期完整生命周期 oncreate->onstart->onresume->onpause->onstop->ondestory使用场景:应用程序退出自动保存数据 ondestory oncreate可视生命周期 onstart->onresume->onpause->onsto...
分类:移动开发   时间:2014-12-05 23:59:15    阅读次数:375
Android学习笔记
********************2014、11、12********************1、Android 之 fill_parent 、wrap_content 、match_parent属性fill_parent 设置一个顶部布局或控件为fill_parent将强制性让它布满整个屏幕...
分类:移动开发   时间:2014-12-05 19:13:22    阅读次数:258
749条   上一页 1 ... 56 57 58 59 60 ... 75 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!