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.
我想显示当天的事件,因此我使用它来创建以下视图。现在我想在那个视图上显示我的事件,我想用颜色填充那个特定的预定时间。谁能帮我做到这一点。我没有 onclickListener 我需要在预定时间显示事件。
您可以使用列表适配器的 getView()。
在该方法中,您可以设置填充相应行的条件。而已。
供您参考,请检查@ubzack 提供的此解决方案
for(int i=0; i<parent.getChildCount(); i++) { if(i == position) { parent.getChildAt(i).setBackgroundColor(Color.BLUE); } else { parent.getChildAt(i).setBackgroundColor(Color.BLACK); } }