我有一个列表活动,它将显示人员姓名和地址列表以及来自对象数组列表的数据。这是到目前为止填充列表视图的方法..
private void fillData(ArrayList<Person> messages) {
//populating list should go here
}
人员类是存储人员的姓名和地址。
public class Person {
String name;
String address;
}
虽然我的列表视图的列表项由两个文本视图组成,如下所示:
<TwoLineListItem xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:minHeight="?android:attr/listPreferredItemHeight"
android:mode="twoLine"
android:clickable="false"
android:paddingBottom="9dp"
android:paddingTop="5dp" >
<TextView
android:id="@+id/display_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/display_number"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/display_name"
android:layout_below="@+id/display_name"
android:textAppearance="?android:attr/textAppearanceSmall" />
我希望我的列表视图中的每个项目都显示每个人的姓名和地址。有人可以帮忙吗?
提前谢谢,对不起我的英语不好......