GridView具有不同的背景颜色

问题描述 投票:-1回答:1

我有一个包含12个元素的GridView。

View v;
v.setBackgroundColor(Color.rgb(0, 107, 179));

我需要让前6个元素具有特定颜色,其余6个元素使用另一种颜色。

可能吗?

gridview colors background-color
1个回答
0
投票

我自己回答:

    if (position < 6)
v.setBackgroundColor(Color.rgb(0, 107, 179));
else
v.setBackgroundColor(Color.rgb(0,91,153));
© www.soinside.com 2019 - 2024. All rights reserved.