滚动时背景ListView变为黑色


427

我创建了一个特定的列表,该列表存在于以下元素之外,以创建可滚动列表,每行的左侧包含一个图像,右侧包含一些文本:

首先使用“根”布局:

<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中放置以下“行”项:

<?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该根元素中添加了一个在具有相同背景的情况下,滚动列表时,该颜色将保留其颜色。

Answers:


771

ListView标签上添加属性

android:cacheColorHint="#00000000" // setting transparent color

有关更多详细信息,请查看此博客


23
this.getListView()。setCacheColorHint(0); 从布局我无法设置颜色。但是我设法用上面的代码做到了。我在列表活动的“ onCreate”中使用了此代码。希望这些信息对您有所帮助。
Dijo David

70
android:cacheColorHint="#0000"如果您害怕零,也可以使用。
安德鲁

136
或者,android:cacheColorHint="@android:color/transparent"如果您担心数字:)
dule 2012年

2
@android:color / transparent可能具有设置一位的额外好处。有一个错误,如果您在某些手机上传递0,则透明度将不起作用。因此,诀窍是设置1位。
Thomas Dignan 2012年

63

非常简单,只需在布局文件中使用以下行:

android:scrollingCache="false"

像这样:

<ListView 
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollingCache="false"
/>

2
它有效,但我认为这样做并不明智:stackoverflow.com/questions/15570041/scrollingcache
Morten Holmgaard 2014年

1
我遇到了android:cacheColorHint =“#00000000”无法正常运行,但android:scrollingCache =“ false”无法正常运行的情况。谢谢。
2015年

27

您可以这样使用:

list.setCacheColorHint(Color.TRANSPARENT);
list.requestFocus(0);

10

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"/>

7

我们为这个问题提供了很多选择,您可以通过编程将背景设置为透明

yourlistview.setCacheColorHint(Color.TRANSPARENT); 

或通过xml

android:cacheColorHint="@android:color/transparent"


5

我在使用图像,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);
             } 
        }

4

这个问题有很多答案,但是今天我意识到这个问题仍然缺少重要的信息。

该问题有两种可能的解决方案,两者都可以工作,但是每种解决方案都应在不同的情况下使用。


方法

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的动画和滚动会变慢。



2

以下为我工作:

myListView.setScrollingCacheEnabled(false);

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.