我正在尝试找到一种方法来更改 Android 库的背景,例如: 1.row darkgrey; 2. 行灰色;3.行深灰色;4.行灰色等
但它没有用。
我试过了:
if(mIndexController%2 ==1){
itemContainer.setBackgroundColor(R.color.grey);
viewsContainer.setBackgroundColor(R.color.grey);
}
else{
itemContainer.setBackgroundColor(R.color.darkgrey);
viewsContainer.setBackgroundColor(R.color.darkgrey);
}
在库 UITableView 活动中,但它不起作用。
有人可以帮助我吗?
这里是图书馆: https ://github.com/thiagolocatelli/android-uitableview
我希望 ListView 看起来像这样:http: //i.stack.imgur.com/Ls5bG.png