2011-11-09 44 views

回答

1

嘗試......

在您的自定義佈局識別您的根元素,並設置其背景色。

linearLayout.setBackgroundColor(Color.WHITE); 
0

您將不得不創建自定義適配器,並根據需要配置各個視圖。請記住,該列表視圖可循環更好的性能

0

你好如果你想使用任何兩種顏色,那麼你可以使用下面的代碼到你的CustomAdapter中。

private int[] colors = new int[] { Color.LTGRAY, Color.WHITE }; 

而且在getView()寫

int colorPos = position % colors.length; 
    convertView.setBackgroundColor(colors[colorPos]); 

我希望它可以幫助你。

相關問題