此處列表爲數組列表。發生的事情是文本被覆蓋並始終顯示最後一個值。列表的大小爲4如何在Android中使用循環將文本設置爲textViews
for (int i = 0; i < list.size(); i ++){
TextView name = (TextView) convertView.findViewById(R.id.user_names);
name.setText(list.get(i).toString());
TextView email = (TextView) convertView.findViewById(R.id.user_emails);
email.setText(list.get(i).toString());
}
它這樣做,因爲你幾乎要求它... – Rohan
您應該使用ListView或Recyclerview。也不應該使用'TextView name =(TextView)convertView.findViewById(R.id.user_names);'這個循環。 –
哇.. 3人幾乎在同一時間回答..:v – faruk