上一页 1 2 3 4 5 6 7 8 ··· 12 下一页
摘要: AutoCompleteTextView 一.自动提示文本输入框且不区分大小写 二.适配器ArrayAdapter 1.数据源是String[ ]或集合,保存要提示的文本 2.layout文件 三.completionThreshold 1.设置提示需要的最小字符数 2.默认是2 1 <?xml v 阅读全文
posted @ 2016-05-22 20:28 烟_雨_江_南 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 一.概念 GridView网格视图:带格子的ListView。 二.使用Adapter:常用BaseAdapter 三.属性 1.numColumns 列数:auto_fit,数值。 2.horizontalSpacing 水平间距 3.verticalSpacing 垂直间距 4.columnWi 阅读全文
posted @ 2016-05-22 20:03 烟_雨_江_南 阅读(643) 评论(0) 推荐(0) 编辑
摘要: 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.andr 阅读全文
posted @ 2016-05-21 09:51 烟_雨_江_南 阅读(163) 评论(0) 推荐(0) 编辑
摘要: BaseAdapter 1.抽象类 必须要继承并实现4个抽象方法: (1)int getCount() 返回数据源的记录数 (2)Object getItem(int position) 返回索引对应的数据对象 (3)long getItemId(int position) 返回索引对应的数据对象的 阅读全文
posted @ 2016-05-20 22:03 烟_雨_江_南 阅读(106) 评论(0) 推荐(0) 编辑
摘要: API:setAdapter(Adapter) 设置适配器 ArrayAdapter (1)layout:只能有一个<TextView>, 不能有布局 (2)数据源:String[ ]或List<String> SimpleAdapter (1)layout:可以用布局,包含多个视图 (2)构造方法 阅读全文
posted @ 2016-05-19 17:07 烟_雨_江_南 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 要求:要用progressDialog和子线程来模拟显示拷贝进度;进度完成后在主界面提示拷贝完成,分别使用普通方式和消息机制编写。 阅读全文
posted @ 2016-05-18 11:44 烟_雨_江_南 阅读(176) 评论(0) 推荐(0) 编辑
摘要: ListView 1.概念 (1)列表视图 (2)用来显示多个可滑动项列表的ViewGroup (3)需要适配器Adapter将集合中数据和每一个Item所对应的布局动态适配到ListView中进行显示 2.适配器 Adaper (1)API (2)分类 3.监听器 阅读全文
posted @ 2016-05-17 16:33 烟_雨_江_南 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 1 2 12 18 19 25 26 32 33 40 41 1 package com.hanqi.testapp2; 2 3 import android.os.Bundle; 4 import android.os.Handler; 5 import android.os.Message; 6 i... 阅读全文
posted @ 2016-05-17 13:06 烟_雨_江_南 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 消息机制 1.实现多线程之间的信息传递的机制 2.用法 (1)Message 消息: 【1】创建 Message.obtain():使用消息池获取或创建新消息 【2】public 属性: ①what int 表示id; ②arg1 int 参数1; ③arg2 int 参数2; ④obj Objec 阅读全文
posted @ 2016-05-16 19:28 烟_雨_江_南 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 1 2 12 13 18 19 24 25 30 1 package com.hanqi.testapp2; 2 3 import android.os.Message; 4 import android.support.v7.app.AppCompatActivity; 5 import android.os.Bund... 阅读全文
posted @ 2016-05-16 19:13 烟_雨_江_南 阅读(165) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 12 下一页