我想显示当天的活动,因此我used this创建了以下视图。现在我想在该视图上显示我的事件,我想用颜色填充特定的预定时间。任何人都可以帮我做这个。我没有onclickListener我需要在预定的时间显示事件。
答案 0 :(得分:0)
答案 1 :(得分:0)
for(int i=0; i<parent.getChildCount(); i++)
{
if(i == position)
{
parent.getChildAt(i).setBackgroundColor(Color.BLUE);
}
else
{
parent.getChildAt(i).setBackgroundColor(Color.BLACK);
}
}