滚动时背景ListView变为黑色

我创建了一个特定的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中我放置以下“行”项:

<?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具有相同背景的元素,当滚动列表时,这个将保留它的颜色...任何想法为什么会发生这种情况,以及如何解决这个问题?


#1楼

你可以像这样使用:

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

#2楼

在布局文件中使用此行非常简单:

android:scrollingCache="false"

像这样:

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

#3楼

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楼

我们有很多选择来解决这个问题,你可以通过编程来设置背景透明

yourlistview.setCacheColorHint(Color.TRANSPARENT); 

或通过xml

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

#5楼

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

这个问题有两种可能的解决方案 ,两种方法都有效,但每种方法都应该用于不同的情况。


方法

ListView具有纯色背景时,请使用android:cacheColorHint

<item name="android:cacheColorHint">@android:color/transparent</item>

ListView将(复杂) 图像作为背景时,请使用android:scrollingCache

<item name="android:scrollingCache">false</item>

注意

ListView具有纯色背景时,两种方法都可以工作,因此不仅cacheColorHint可以工作。 但是不建议将scrolingCache方法用于纯色背景,因为它会关闭用于平滑动画和滚动ListView的优化方法。

注意注意: scrolingCache设置为false并不一定意味着ListView的动画,滚动会变慢。


#6楼

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

#7楼

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

要么

不要设置listview背景。


#8楼

ListView标记上添加属性

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

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


#9楼

在你的xml中使用Listview设置

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

#10楼

我在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);
             } 
        }

#11楼

以下对我有用:

myListView.setScrollingCacheEnabled(false);
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值