Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 TableView,它为它解析的 XML 文件中的每个条目添加一个 TableRow。
要设置背景颜色,我目前正在使用:
TableRow.setBackgroundResource(color);
如何设置它以便每个 TableRow 交替背景颜色?
一个简单直接的解决方案可能是,当您遍历 XML 文件中的每个条目时,保留一个计数器。如果计数器是奇数,使用color1,如果计数器是偶数,使用color2。
color1
color2
for(int i = 0; i < NUM_XML_ENTRIES; i++){ // add table row if (i % 2) { TableRow.setBackgroundResource(color1); } else { TableRow.setBackgroundResource(color2); } }