Android之个性化ListView实现
2010-06-29 15:17:00 来源:WEB开发网Android中提供的ListView部件,用来在android手机中展现一个列表,这个列表的表现形式,完全由你选择的Adapter有关系,android框架中已有的adapter,形式都比较单调,能处理的数据都很一般。要想实现一个美观的列表,就得写自己的个性化adapter。
具体过程分为这几步:
第一步:定义自己的ListView类,继承android的ListView类。
Java代码
public class CustomerizeListView extends ListView {
//..
}
public class CustomerizeListView extends ListView {
//..
}
第二步:在自定义ListView类中写一个自己的个性化Adapter类,因为和自己的ListView类相关,那就定义成内部类,同时让它继承BaseAdapter类。例如在CustomerizeListView中添加一个CustomerizeListAdapter内部类,如下:
Java代码
public class CustomerizeListView extends ListView {
//..
/**
* Uses for setting data into CustomerizeListView.
*/
protected class CustomerizeListAdapter extends BaseAdapter {
//..
}
}
public class CustomerizeListView extends ListView {
//..
/**
* Uses for setting data into CustomerizeListView.
*/
protected class CustomerizeListAdapter extends BaseAdapter {
//..
}
}
第三步:做一个自己个性化的layout,如下:
Xml代码
< LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
< ImageView android:id="@+id/icon"
android:layout_width="32dip"
android:layout_height="32dip" />
< /LinearLayout>
< LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››android中查看项目数字证书的两种方法
- ››Android中获取IMEI码的办法
- ››android 相机报错 setParameters failed
- ››Android重启运用程序的代码
- ››Android为ListView的Item设置不同的布局
- ››android bitmap与base64字符串的互相转换
更多精彩
赞助商链接