我有一个列表视图,其中包含多个textview:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="16dip"
android:textColor="#000000"
android:paddingLeft="10dip"
android:textStyle="bold"/>
<TextView
android:id="@+id/address"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="16dip"
android:textColor="#000000"
android:paddingTop="15dip"
android:paddingBottom="15dip"
android:paddingLeft="10dip"
android:textStyle="bold"/>
</RelativeLayout>
我有一个包含name
和address
的POJO列表,我希望列表视图中的每个项目都填充这些值。
我的POJO是这样的:
public class Person {
private String name;
private String address;
//getter setter
public String toString() {return name;}
}
问题
当我使用我的列表设置列表适配器时,如何设置名称和地址?
目前我这样做只设置名称:
setListAdapter(new ArrayAdapter<Person>(MyActivity.this, R.layout.list_text, R.id.name, personList));
答案 0 :(得分:12)
您应该创建一个扩展adapter
的自定义ArrayAdapter
。您可以使用ArrayAdapter
执行的操作有限。
这样的事情:
public class PersonAdapter extends ArrayAdapter<Person> {
private final Context context;
private final ArrayList<Person> data;
private final int layoutResourceId;
public PersonAdapter(Context context, int layoutResourceId, ArrayList<Person> data) {
super(context, layoutResourceId, data);
this.context = context;
this.data = data;
this.layoutResourceId = layoutResourceId;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View row = convertView;
ViewHolder holder = null;
if(row == null)
{
LayoutInflater inflater = ((Activity)context).getLayoutInflater();
row = inflater.inflate(layoutResourceId, parent, false);
holder = new ViewHolder();
holder.textView1 = (TextView)row.findViewById(R.id.text1);
holder.textView2 = (TextView)row.findViewById(R.id.text2);
...
...
holder.textView3 = (TextView)row.findViewById(R.id.text3);
row.setTag(holder);
}
else
{
holder = (ViewHolder)row.getTag();
}
Person person = data.get(position);
holder.textView1.setText(person.getName());
holder.textView2.setText(person.getAddress());
...
...
holder.textView3.setText(person.getEtc());
return row;
}
static class ViewHolder
{
TextView textView1;
TextView textView2;
...
...
TextView textView3;
}
}
textView1
,textView2
... textView-n
都是您的文字观看次数。按如下方式设置适配器:
setListAdapter(new PersonAdapter(MyActivity.this, R.layout.list_text, personList));
注意:我假设您的personList
是List
类型对象。如果是Array
请告诉我。
答案 1 :(得分:0)
我会看看ESV的TwoLineArrayAdapter,它的格式是名称和标题,但几乎就是你需要的。
编辑:
class StringHolder {
public String text;
public int viewId;
}
对于 n 字符串的场景,解决方案非常相似。创建ArrayAdapter
或StringHolder[]
类型的自定义List<StringHolder>
,具体取决于此金额是否已修复。在getView
中,您将遍历所有StringHolder
个对象,请致电findViewById
,然后更新文字内容。或者,您可以简单地使用数组/列表中的索引,并将其映射到视图ID,如果它们保持一致。
这当然只是实现这一目标的一种方式,还有更多内容,我会将实际实施作为练习留给读者。