我需要使用替代顏色製作ListView。ListView替代的顏色
代碼:
public View getView(int position, View convertView, ViewGroup parent) {
if(position %2==0)
{
view.setBackgroundColor(Color.BLUE);
}
return view;
}
,但我不知道如何使用它在我的適配器:
SimpleAdapter adapter = new SimpleAdapter(this, propositions, android.R.layout.simple_list_item_2,
new String[] {"Date", "Trajet"},
new int[] { android.R.id.text1,
android.R.id.text2});
lvTrajets.setAdapter(adapter);
有人可以幫助我瞭解如何做到這一點嗎?
只是覆蓋getView您的適配器 – Raghunandan
你必須寫自己的適配器,並覆蓋getView –
我怎麼能這樣做? – user3507621