3

可能重复:
Android - 将子项添加到列表视图

我有 2 个数组 - Namearray 和 companyarray。我想在列表视图中显示它。我已设法使用以下代码在列表中显示名称:

ArrayAdapter<Comment> adapter = new ArrayAdapter<Comment>(this,
                android.R.layout.simple_list_item_1, Namearray);
        setListAdapter(adapter);

但是如何将子项目作为公司名称添加到列表中。

在关注 Sai Geetha 的博客之后 - 我出来关注 - 但列表显示为空 - 它显示 2 条黑线,上面没有文字。我的活动背景是蓝色的,我在 custom_row_view 中检查了 textview textcolor 是黑色的。我错过了什么吗?

if(cur!=null && cur.getCount()>0)
        {
        List<Map<String, String>> data = new ArrayList<Map<String, String>>();
         Log.w("count=","ct="+cur.getCount() );
        for (int i=1;i<=cur.getCount();i++) {
            Map<String, String> datum = new HashMap<String, String>(2);
            Log.w("name=",cur.getString(0) );
            Log.w("compname=",cur.getString(1) );
            datum.put("Name",cur.getString(0));
            datum.put("Company", cur.getString(1));
            data.add(datum);
            cur.moveToNext();
        }
        SimpleAdapter adapter = new SimpleAdapter(this, data,
                                                 R.layout.custom_row_view,
                                                  new String[] {"Name", "Company"},
                                                  new int[] {android.R.id.text1,
                                                             android.R.id.text2});
        setListAdapter(adapter);
        cur.close();
        }
4

0 回答 0