Listview如何给每个item下的某个控件设置不一样的背景色,求大神解答。 5
如图,每个Item那个圆圈的背景色都不一样,请问这种效果该如何实现呢,有6种不一样的颜色,改怎么随机或者有规律的添加进去呢?...
如图,每个Item那个圆圈的背景色都不一样,请问这种效果该如何实现呢,有6种不一样的颜色,改怎么随机或者有规律的添加进去呢?
展开
1个回答
展开全部
JQUERY,
方法一:$("Item").each(function(index,entity){
if(index==0)$(entity).css({backgroundColor:"White"});
if(index==1)$(entity).css({backgroundColor:"Gray"});
if(index==2)$(entity).css({backgroundColor:"White"});
if(index==3)$(entity).css({backgroundColor:"Gray"});
});
方法二:
$("item:odd")..css({backgroundColor:"White"});
$("item:even")..css({backgroundColor:"Gray"});
方法三:在后端:
if(item.index%2=0)
item.attributes.add("style","background-color:White;");
else
item.attributes.add("style","background-color:Gray;");
方法一:$("Item").each(function(index,entity){
if(index==0)$(entity).css({backgroundColor:"White"});
if(index==1)$(entity).css({backgroundColor:"Gray"});
if(index==2)$(entity).css({backgroundColor:"White"});
if(index==3)$(entity).css({backgroundColor:"Gray"});
});
方法二:
$("item:odd")..css({backgroundColor:"White"});
$("item:even")..css({backgroundColor:"Gray"});
方法三:在后端:
if(item.index%2=0)
item.attributes.add("style","background-color:White;");
else
item.attributes.add("style","background-color:Gray;");
追问
我是说Android啊 大哥
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询