Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1072396
  • 博文数量: 403
  • 博客积分: 10272
  • 博客等级: 上将
  • 技术积分: 4407
  • 用 户 组: 普通用户
  • 注册时间: 2012-02-24 14:22
文章分类

全部博文(403)

文章存档

2012年(403)

分类: 嵌入式

2012-03-02 13:08:19

ListView是一个经常用到的控件,ListView里面的每个子项Item可以使一个字符串,也可以是一个组合控件。先说说ListView的实现:

1.准备ListView要显示的数据 ;

2.使用 一维或多维 动态数组 保存数据;


2.构建适配器 , 简单地来说, 适配器就是 Item数组 , 动态数组 有多少元素就生成多少个Item;

3.把 适配器 添加到ListView,并显示出来。




接下来,看看本文代码所实现的ListView:





接下来,就开始UI的XML代码:

main.xml代码如下,很简单,也不需要多做解释了:

[xhtml] view plaincopyprint?
01.
02.03. android:id="@+id/LinearLayout01"
04. android:layout_width="fill_parent"
05. android:layout_height="fill_parent"
06. xmlns:android="">
07.
08. 09. android:layout_height="wrap_content"
10. android:id="@+id/MyListView">
11.

12.


android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="">

android:layout_height="wrap_content"
android:id="@+id/MyListView">






my_listitem.xml的代码如下,my_listitem.xml用于设计ListView的Item:

[xhtml] view plaincopyprint?
01.
02.03. android:layout_width="fill_parent"
04. xmlns:android=""
05. android:orientation="vertical"
06. android:layout_height="wrap_content"
07. android:id="@+id/MyListItem"
08. android:paddingBottom="3dip"
09. android:paddingLeft="10dip">
10. 11. android:layout_height="wrap_content"
12. android:layout_width="fill_parent"
13. android:id="@+id/ItemTitle"
14. android:textSize="30dip">
15.

16. 17. android:layout_height="wrap_content"
18. android:layout_width="fill_parent"
19. android:id="@+id/ItemText">
20.

21.


android:layout_width="fill_parent"
xmlns:android=""
android:orientation="vertical"
android:layout_height="wrap_content"
android:id="@+id/MyListItem"
android:paddingBottom="3dip"
android:paddingLeft="10dip">
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/ItemTitle"
android:textSize="30dip">

android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/ItemText">




解释一下,里面用到的一些属性:

1.paddingBottom="3dip",Layout往底部留出3个像素的空白区域

2.paddingLeft="10dip",Layout往左边留出10个像素的空白区域

3.textSize="30dip",TextView的字体为30个像素那么大。



最后就是JAVA的源代码:

[java] view plaincopyprint?
01.public void onCreate(Bundle savedInstanceState) {
02. super.onCreate(savedInstanceState);
03. setContentView(R.layout.main);
04. //绑定XML中的ListView,作为Item的容器
05. ListView list = (ListView) findViewById(R.id.MyListView);
06.
07. //生成动态数组,并且转载数据
08. ArrayList> mylist = new ArrayList>();
09. for(int i=0;i<30;i++)
10. {
11. HashMap map = new HashMap();
12. map.put("ItemTitle", "This is Title.....");
13. map.put("ItemText", "This is text.....");
14. mylist.add(map);
15. }
16. //生成适配器,数组===》ListItem
17. SimpleAdapter mSchedule = new SimpleAdapter(this, //没什么解释
18. mylist,//数据来源
19. R.layout.my_listitem,//ListItem的XML实现
20.
21. //动态数组与ListItem对应的子项
22. new String[] {"ItemTitle", "ItemText"},
23.
24. //ListItem的XML文件里面的两个TextView ID
25. new int[] {R.id.ItemTitle,R.id.ItemText});
26. //添加并且显示
27. list.setAdapter(mSchedule);
28.}
阅读(506) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

RT123AA2012-03-03 08:04:39

LZ如果用代码编辑器插入代码会 更好的哦\(^o^)/~