5

我有一个ListView并且无法显示列表中的子项目...它只显示一个或另一个,但不能同时显示。如果我从下面删除数字,它将显示字符串(标题):

我想同时显示项目和子项目。

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    this.loadData();

    String []titles_str = titles.toArray(new String[titles.toArray().length]);
    this.setListAdapter(new ArrayAdapter<String>(this,
            android.R.layout.simple_list_item_2, android.R.id.text1, titles_str));

    Number []subtitles_str = lengths.toArray(new Number[lengths.toArray().length]);
    this.setListAdapter(new ArrayAdapter<Number>(this,
            android.R.layout.simple_list_item_2, android.R.id.text2, subtitles_str));
}
4

1 回答 1

5

您正在使用“this.setListAdapter”两次,只有第二次“this.setListAdapter”会反映。

根据您的要求,请使用

1)custom arrayadapter<customObject> 
      or 
2)simpleadapter.

1)使用自定义arrayadapter,请查看http://devtut.wordpress.com/2011/06/09/custom-arrayadapter-for-a-listview-android/

2)使用简单适配器:

List<Map<String, String>> data = new ArrayList<Map<String, String>>();
for (int i=0; i<titles_str.length; i++) {
    Map<String, String> datum = new HashMap<String, String>(2);
    datum.put("title", titles_str[i]);
    datum.put("subtitle", String.valueof(subtitles_str[i]));
    data.add(datum);
}
SimpleAdapter adapter = new SimpleAdapter(this, data,
                                      android.R.layout.simple_list_item_2,
                                      new String[] {"title", "subtitle"},
                                      new int[] {android.R.id.text1,
                                                 android.R.id.text2});
this.setListAdapter(adapter);
于 2013-05-09T10:04:26.317 回答