所以我有一個類:如何顯示在列表視圖對象的ID如果適配器類型的對象
class student{
public int id;
public String name;
}
後來才知道有學生類型的adapterArray和適配器傳遞到列表視圖。我想知道如何讓listview只顯示學生的姓名。 代碼:
ListView list=(ListView)findViewById(R.id.list_day_wise_expense);
ArrayAdapter<Student> adapter = new ArrayAdapter<Student>(this,R.layout.increase_size_text, kids);
list.setAdapter(adapter);
,孩子們是學生的對象和列表的陣列是我的列表視圖。 我想要列表顯示他們的名字。
重寫'toString' – pskink
使用adapter.getItem(position)應該返回你的Student類。然後你可以在其上執行student.name或getName()。 –
選中此[教程](http://androhub.com/android-listview/)。 –