在ListView中设置TextView的Text

时间:2013-05-07 13:38:42

标签: android listview layout icons

在我的ListView中,我保存了我的数据:

public void listview_fuellen(){
    DBHelper db = new DBHelper(this);

    ListView lv = (ListView) findViewById(R.id.lvKinder);
    Cursor c = db.select();
    int count = c.getCount();

    TextView tv = (TextView) findViewById(R.id.secondLine);
    List<String> auswahl = new ArrayList<String>();
    List<String> auswahl1 = new ArrayList<String>();
    int i = 0;
    System.out.println("$$$$$$$$$$$$$$$$$$$$$$$1" + c.getCount());
    while(c.moveToNext())
    { 

        auswahl.add(c.getString(c.getColumnIndex("name")));
        auswahl1.add(" " + i);
        System.out.println("SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS" + auswahl.get(i).toString());

        i++;
    }

    ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.list_black_text,R.id.firstLine, auswahl);
    //ArrayAdapter<String> adapter1 = new ArrayAdapter<String>(this, R.layout.list_black_text,R.id.secondLine, auswahl1);

    lv.setAdapter(adapter);

}

现在,我从这里尝试了listview的布局:

http://android-developers.blogspot.co.at/2009/02/android-layout-tricks-1.html

现在,我如何为每个ListView-Item或图标中的第二行设置值?

修改

我现在尝试了这样,但是我的listview中没有条目。

ArrayList<HashMap<String, String>> mylist = new ArrayList<HashMap<String, String>>();
    HashMap<String, String> map =  new HashMap<String, String>();;




    int i = 0;
    System.out.println("$$$$$$$$$$$$$$$$$$$$$$$1" + c.getCount());
    while(c.moveToNext())
    { 
        //map = new HashMap<String, String>();
        map.put("name",c.getString(c.getColumnIndex("name")));
        map.put("datum", c.getString(c.getColumnIndex("zeit")));


        i++;
    }
    mylist.add(map);

   SimpleAdapter mSchedule = new SimpleAdapter(this, mylist, R.layout.list_black_text, new String[] { "datum",
         "name" }, new int[] { R.id.firstLine, R.id.secondLine });

    lv.setAdapter(mSchedule);
    setListAdapter(mSchedule);

我做错了什么?

1 个答案:

答案 0 :(得分:0)

为此您可以创建自定义适配器,然后您可以为每个ListView-Item中的第二行设置值。

您可以查看此链接 http://devtut.wordpress.com/2011/06/09/custom-arrayadapter-for-a-listview-android/

相关问题