本站首页    管理页面    写新日志    退出


«November 2025»
1
2345678
9101112131415
16171819202122
23242526272829
30


公告
本博客在此声明所有文章均为转摘,只做资料收集使用。并无其他商业用途。

我的分类(专题)

日志更新

最新评论

留言板

链接

Blog信息
blog名称:
日志总数:210
评论数量:205
留言数量:-19
访问次数:928520
建立时间:2007年5月10日




[Android]Android学习笔记(5)-关于ListActivity的简单体验
文章收藏,  网上资源,  软件技术,  电脑与网络

李小白 发表于 2008/10/31 11:02:22

 载自 颜承ID:sharetop http://blog.csdn.net/sharetop/archive/2007/12/28/1998725.aspx 今天学习点轻松的内容吧,看看android.app包里的几个类。首先是这个在平台自的例子中被广泛使用的ListActivity。这个类其实就是一个含有一个ListView组件的Activity类。也就是说,如果我们直接在一个普通的Activity中自己加一个ListView也是完全可以取代这个ListActivity的,只是它更方便而已,方便到什么程度呢?来做个例子瞧瞧。 500)this.width=500'>public class HelloTwoB extends ListActivity500)this.width=500'>500)this.width=500'>...{    500)this.width=500'>500)this.width=500'>    public void onCreate(Bundle icicle) ...{500)this.width=500'>        super.onCreate(icicle);500)this.width=500'>        setTheme(android.R.style.Theme_Dark);500)this.width=500'>        setContentView(R.layout.mainb);500)this.width=500'>        500)this.width=500'>        List<String> items = fillArray();        500)this.width=500'>        ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,R.layout.list_row,items);500)this.width=500'>                500)this.width=500'>        this.setListAdapter(adapter);500)this.width=500'>    }500)this.width=500'>    private List<String> fillArray()500)this.width=500'>500)this.width=500'>    ...{500)this.width=500'>        List<String> items = new ArrayList<String>();500)this.width=500'>        items.add("日曜日");500)this.width=500'>        items.add("月曜日");500)this.width=500'>        items.add("火曜日");500)this.width=500'>        items.add("水曜日");500)this.width=500'>        items.add("木曜日");500)this.width=500'>        items.add("金曜日");500)this.width=500'>        items.add("土曜日");500)this.width=500'>        return items;500)this.width=500'>    }500)this.width=500'>    500)this.width=500'>    @Override500)this.width=500'>    protected void onListItemClick(ListView l, View v, int position, long id)500)this.width=500'>500)this.width=500'>    ...{500)this.width=500'>        TextView txt = (TextView)this.findViewById(R.id.text);500)this.width=500'>        txt.setText("あすは "+l.getSelectedItem().toString()+"です。");500)this.width=500'>    }500)this.width=500'>} 的确可以简单到只需准备一个List对象并借助Adapter就可以构造出一个列表。重载onListItemClick方法可以响应选择事件,利用第一个参数可以访问到这个ListView实例以得到选中的条目信息。这里有一点要说明的,就是如果更简单的话,其实连那个setContentView都可以不要了,Android也会自动帮我们构造出一个全屏的列表。但是本例中我们需要一个TextView来显示选中的条目,所以我们需要一个layout.mainb描述一下这个列表窗口。 500)this.width=500'><?xml version="1.0" encoding="utf-8"?>500)this.width=500'><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"500)this.width=500'>    android:orientation="vertical"500)this.width=500'>    android:layout_width="fill_parent"500)this.width=500'>    android:layout_height="fill_parent"500)this.width=500'>    >500)this.width=500'><TextView id="@+id/text"500)this.width=500'>    android:layout_width="fill_parent"500)this.width=500'>    android:layout_height="wrap_content"500)this.width=500'>    android:text=""500)this.width=500'>    />500)this.width=500'><ListView id="@id/android:list"500)this.width=500'>    android:layout_width="fill_parent"500)this.width=500'>    android:layout_height="0dip"500)this.width=500'>    android:layout_weight="1"500)this.width=500'>    android:drawSelectorOnTop="false"500)this.width=500'>    />500)this.width=500'></LinearLayout> 这里需要注意的是那个ListView的ID,是系统自定义的android:list,不是我们随便取的,否则系统会说找不到它想要的listview了。然后,在这个listview之外,我们又增加了一个TextView,用来显示选中的条目。再来说说这里用到的ArrayAdapter,它的构造函数中第二个参数是一个资源ID,ArrayAdapter的API文档中说是要求用一个包含TextView的layout文件,平台用它来显示每个选择条目的样式,这里的取值是R.layout.list_row,所以,我们还有一个list_row.xml文件来描述这个布局,相当简单。 500)this.width=500'><?xml version="1.0" encoding="utf-8"?>500)this.width=500'><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"500)this.width=500'>    android:orientation="vertical"500)this.width=500'>    android:layout_width="fill_parent"500)this.width=500'>    android:layout_height="fill_parent"500)this.width=500'>    >500)this.width=500'><TextView id="@+id/item"500)this.width=500'>          xmlns:android="http://schemas.android.com/apk/res/android"500)this.width=500'>          android:layout_width="wrap_content"500)this.width=500'>          android:layout_height="wrap_content"/>500)this.width=500'><TextView id="@+id/item2"500)this.width=500'>          xmlns:android="http://schemas.android.com/apk/res/android"500)this.width=500'>          android:layout_width="wrap_content"500)this.width=500'>          android:layout_height="wrap_content"/>500)this.width=500'></LinearLayout> 从ArrayAdapter上溯到BaseAdapter,发现还有几个同源的Adapter也应该可以使用,象SimpleAdapter和CursorAdapter,还是做个例子来实验一下吧。先看看SimpleAdapter,说是simple却不simple。首先看看这个fillMaps方法,基本上就明白这个simpleAdapter是怎么回事了,在有些场合它还是挺有用的,可以为每个条目绑定一个值: 500)this.width=500'>private List<HashMap<String, String>> fillMaps()500)this.width=500'>500)this.width=500'>    ...{500)this.width=500'>        List<HashMap<String, String>> items = new ArrayList<HashMap<String,String>>();500)this.width=500'>       500)this.width=500'>        HashMap<String,String> i = new HashMap<String,String>();500)this.width=500'>        i.put("name","日曜日");500)this.width=500'>        i.put("key", "SUN");500)this.width=500'>        items.add(i);500)this.width=500'>        HashMap<String,String> i1 = new HashMap<String,String>();500)this.width=500'>        i1.put("name","月曜日");500)this.width=500'>        i1.put("key", "MON");500)this.width=500'>        items.add(i1);500)this.width=500'>        HashMap<String,String> i2 = new HashMap<String,String>();500)this.width=500'>        i2.put("name","火曜日");  500)this.width=500'>        i2.put("key", "TUE");500)this.width=500'>        items.add(i2);500)this.width=500'>        HashMap<String,String> i3 = new HashMap<String,String>();500)this.width=500'>        i3.put("name","水曜日");500)this.width=500'>        i3.put("key", "WED");500)this.width=500'>        items.add(i3);500)this.width=500'>        HashMap<String,String> i4= new HashMap<String,String>();500)this.width=500'>        i4.put("name","木曜日");500)this.width=500'>        i4.put("key", "THU");500)this.width=500'>        items.add(i4);500)this.width=500'>        HashMap<String,String> i5 = new HashMap<String,String>();500)this.width=500'>        i5.put("name","金曜日");500)this.width=500'>        i5.put("key", "FRI");500)this.width=500'>        items.add(i5);500)this.width=500'>        HashMap<String,String> i6 = new HashMap<String,String>();500)this.width=500'>        i6.put("name","土曜日");500)this.width=500'>        i.put("key", "SAT");500)this.width=500'>        items.add(i6);500)this.width=500'>500)this.width=500'>        return items;500)this.width=500'>    } 然后,在HelloTwoB中的onCreate函数中,修改代码,有几个不同:items的元素是HashMap实例,这是一点变化,然后构造函数除了要求items以外,还要求提供一个string[]来说明用hash表中的哪个字段显示在列表中,而后是一个资源ID的数组。我的代码是这样的: 500)this.width=500'>//SimpleAdapter demo500)this.width=500'>List<HashMap<String, String>> items = fillMaps();500)this.width=500'>500)this.width=500'>SimpleAdapter adapter=new SimpleAdapter(this,items,R.layout.list_row,new String[]...{"name"},new int[]...{R.id.item}); 编译跑一下可以看到结果了,是吧?只是显示的文字不太对,再改一下: 500)this.width=500'>protected void onListItemClick(ListView l, View v, int position, long id)500)this.width=500'>500)this.width=500'>    ...{500)this.width=500'>        TextView txt = (TextView)this.findViewById(R.id.text);500)this.width=500'>        txt.setText("あすは "+((HashMap)l.obtainItem(position)).get("key").toString()+"です。");500)this.width=500'>    } 这样就好多了,其实一般情况下我们都是用ListView中的obtainItem取得当前选中的条目,然后转成List中的对应类型来使用的。上面的例子中只显示name对应的值,其实你也可以试一下这样: 500)this.width=500'>500)this.width=500'>SimpleAdapter adapter=new SimpleAdapter(this,items,R.layout.list_row,new String[]...{"name","key"},new int[]...{R.id.item,R.id.item2}); 看看是什么效果。再看看那个CursorAdapter吧,它的列表中元素要求是Cursor,这东西与DB有关,不过最简单的DB就是通讯簿。先从Contacts.People入手吧,同样修改代码: 500)this.width=500'>//CursorAdapter demo500)this.width=500'>Cursor mCursor = this.getContentResolver().query(Contacts.People.CONTENT_URI, null, null, null, null);500)this.width=500'>500)this.width=500'>SimpleCursorAdapter adapter=new SimpleCursorAdapter(this,R.layout.list_row,mCursor,new String[]...{Contacts.People.NAME},new int[]...{R.id.item}); 因为单纯的CursorAdapter是抽象类,所以我用的是它的子类SimpleCursorAdapter,很好理解,先用ContentResolver查询通讯簿得到一个游标,然后告诉SimpleCursorAdapter要用其中的People.NAME作为显示项来构造出一个adapter即可。现在的onListItemClick也不一样了,如下: 500)this.width=500'>    protected void onListItemClick(ListView l, View v, int position, long id)500)this.width=500'>500)this.width=500'>    ...{500)this.width=500'>        TextView txt = (TextView)this.findViewById(R.id.text);500)this.width=500'>        Cursor c = (Cursor)l.obtainItem(position);500)this.width=500'>        txt.setText("SEL = "+c.getString(c.getColumnIndex(Contacts.People.NUMBER)));500)this.width=500'>    }         这里同样是先用obtainItem取到游标,然后用从记录中取出想要的字段显示即可。在做这个例子时,因为权限的问题我们还得修改一下AndroidManifest.xml文件,让我们的应用可以访问到通讯簿: 500)this.width=500'><manifest xmlns:android="http://schemas.android.com/apk/res/android"500)this.width=500'>    package="cn.sharetop.android.hello.two">500)this.width=500'>    <uses-permission id="android.permission.READ_CONTACTS" />500)this.width=500'>    <application android:icon="@drawable/icon">500)this.width=500'> ... ... OK,先到这里,CSDN今天相当不稳定,不知道能否发布成功。


阅读全文(3613) | 回复(0) | 编辑 | 精华
 



发表评论:
昵称:
密码:
主页:
标题:
验证码:  (不区分大小写,请仔细填写,输错需重写评论内容!)



站点首页 | 联系我们 | 博客注册 | 博客登陆

Sponsored By W3CHINA
W3CHINA Blog 0.8 Processed in 0.660 second(s), page refreshed 144823079 times.
《全国人大常委会关于维护互联网安全的决定》  《计算机信息网络国际联网安全保护管理办法》
苏ICP备05006046号