如何将cachecolorhint设置为扩展BaseExpandableListAdapter的类

时间:2010-11-22 08:59:29

标签: android

您好我使用BaseExpandableListAdapter创建了可扩展列表视图。如果我滚动列表然后我发现默认缓存颜色为黑色但列表的背景颜色为白色。我想将cachecolour设置为白色。

如何将cachecolorhint设置为在android中扩展BaseExpandableListAdapter的类

由于 Sunil Kumar Sahoo

1 个答案:

答案 0 :(得分:0)

在布局XML中,您可以在分配了适配器的列表视图中使用android:cacheColorHint="#00000000"。否则你可以使用setCacheColor()方法编程,你必须传递颜色以避免在列表视图中快速滚动时缓存颜色。

由于 迪帕克