Android 之个性化ListView实现
2010-09-17 00:14: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代码
< xmlns:android="http://schemas.android.com/apk/res/android">
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
< android:id="@+id/icon">
android:layout_width="32dip"
android:layout_height="32dip" />
< xmlns:android="http://schemas.android.com/apk/res/android">
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
更多精彩
赞助商链接