リストビュー用のカスタム アダプターを作成しています。このアダプターを使用して、リストビューの背景色を交互に変更したいと考えています。
boolean alternate = false;
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (alternate)
{
// set background colour of this item?
}
alternate = !alternate;
// lots of other stuff here
return convertView; }
コンテキストでリストビュー アイテムの背景を設定するにはどうすればよいですか?