如何为自定义列表视图实现这种奇数行或偶数行的方法?
我想在 listview 中分离双行,
我使用这个到奇数行:
final int[] bg = new int[]{ R.drawable.even_row, R.drawable.odd_row };
view.setBackgroundResource(bg[position % bg.length]);
我为奇数行写了这个但不起作用:
第一行:
backgroundColor = 0;
view.setBackgroundResource(bg[backgroundColor]);
第二行:
view.setBackgroundResource(bg[backgroundColor]);
backgroundColor = (backgroundColor == 0) ? 1:0;
上面的代码写在getView() ((custom listview))
backgroundColor是一个全局整型变量