Android:解决列表滚动时背景色变黑的方法

来源:互联网 发布:楠木正成 知乎 编辑:程序博客网 时间:2024/04/27 20:09
设置列表的滑动时的颜色:android:cacheColorHint="#000000",只要不为黑色即可。

如下:
<ListView
        android:id="@+id/hotAppList"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/head"
        android:cacheColorHint="@color/main_bg"
        >       
    </ListView>

0 0
原创粉丝点击