我创建了一个特定的List,它存在于以下元素之外,用于创建一个可滚动列表,每行包含左侧的Image和右侧的一些文本:
以“根”布局开头:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#C8C8C8"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:drawSelectorOnTop="false"
android:divider="#C8C8C8"
android:background="#C8C8C8"/>
</LinearLayout>
然后在ListView中放置以下“row”项:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@drawable/bg_row"
>
<ImageView
android:layout_width="wrap_content"
android:paddingLeft="10px"
android:paddingRight="15px"
android:paddingTop="5px"
android:paddingBottom="5px"
android:layout_height="wrap_content"
android:src="@drawable/bg_image"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="5px"
android:paddingBottom="5px"
android:textSize="16sp"
android:textColor="#000000"
android:layout_gravity="center"
android:maxHeight="50px"/>
</LinearLayout>
只要屏幕静态显示(如没有移动),它就会正确显示,但是当我开始滚动列表时,行项目的背景(代码中可以显示的“图标”) )将正确显示,但“根”布局的背景将变为完全黑色...当滚动停止时,背景将在大多数情况下恢复其颜色......
在我测试的时候,我还在相同背景的根元素中添加了一个TextView
,当滚动List时,这个会保留它的颜色...
知道为什么会这样,以及如何解决这个问题?
答案 0 :(得分:769)
在ListView
标记
android:cacheColorHint="#00000000" // setting transparent color
有关详细信息,请查看this blog
答案 1 :(得分:62)
在布局文件中使用此行非常简单:
android:scrollingCache="false"
像这样:
<ListView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollingCache="false"
/>
答案 2 :(得分:26)
你可以像这样使用:
list.setCacheColorHint(Color.TRANSPARENT);
list.requestFocus(0);
答案 3 :(得分:8)
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:drawSelectorOnTop="false"
android:divider="#C8C8C8"
android:background="#C8C8C8"
android:cacheColorHint="#00000000"/>
答案 4 :(得分:6)
我们有很多选择来解决这个问题,您可以通过
等编程将背景设置为透明yourlistview.setCacheColorHint(Color.TRANSPARENT);
或通过xml
android:cacheColorHint="@android:color/transparent"
答案 5 :(得分:4)
我正在使用listView
中的图片,有时在三星s4中变黑,甚至没有滚动。这是我在适配器中完成的一个愚蠢的错误。我只是将视图设为null 来修复此问题
@Override
public View getView(int position, View convertView, ViewGroup parent) {
Holder holder;
convertView = null; // convert view should be null
if (convertView == null) {
holder = new Holder();
convertView = inflater1.inflate(R.layout.listview_draftreport_item, null);
}
}
答案 6 :(得分:3)
这个问题有很多答案,但今天我意识到这个问题仍然缺少一个重要的信息。
问题有两个可能的解决方案,两者都有效,但每个都应该在不同情况下使用。
方法
当android:cacheColorHint
具有实体颜色背景时,请使用ListView
。
<item name="android:cacheColorHint">@android:color/transparent</item>
当android:scrollingCache
有一个(复杂的)图片作为背景时,请使用ListView
。
<item name="android:scrollingCache">false</item>
当您的ListView
具有纯色背景时,两种方法都可以使用,因此cacheColorHint
不仅有效。但是不建议将scrolingCache
方法用于纯色背景,因为它会关闭用于平滑动画和滚动ListView的优化方法。
请注意注意: scrolingCache
设置为false并不一定意味着ListView
的动画,滚动会变慢。
答案 7 :(得分:3)
在xml中使用Listview
设置
android:cacheColorHint="@android:color/transparent"
答案 8 :(得分:1)
android:cacheColorHint="@android:color/transparent"
答案 9 :(得分:1)
以下对我有用:
myListView.setScrollingCacheEnabled(false);
答案 10 :(得分:1)
添加属性
android:cacheColorHint="#00000000" //transparent color
答案 11 :(得分:0)
android:cacheColorHint="#00000000"// setting transparent color
或
不设置listview
的背景。