我已经为几乎所有小部件指定了白色背景,除了滚动时它才有效。滚动期间背景容器变黑,导致恼人的闪烁。
答案 0 :(得分:54)
答案 1 :(得分:4)
列表对象的活动* .xml文件中的ScrollingCache =“false”也可以解决问题。
答案 2 :(得分:0)
只需将背景置于顶部,无需突出显示或其他不良影响,无需提示或缓存
在listview布局中
黑色背景为android:background="#000000"
,白色为android:background="#FFFFFF"
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
android:orientation="vertical" >
<TextView
android:id="@+id/testscheck"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:layout_marginBottom="12dp"
android:layout_weight="1"
android:layout_gravity="left|center"
android:gravity="left"
android:textColor="@color/ics"
android:textSize="14sp"
/>
</LinearLayout>
答案 3 :(得分:0)
我通过使单元格的背景颜色与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="fill_parent"
android:orientation="vertical"
android:background="#FFFFFF">
<ListView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFFF"> <---- Background color of ListView
</ListView>
</LinearLayout>
然后是行:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="8dip"
android:background="#FFFFFF"> <--- Background color of the cell
<LinearLayout
android:id="@+id/projects_cover_row_image_layout"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:background="#444444"
android:layout_centerInParent="true"
android:layout_marginRight="8dip">
<ImageView
android:id="@+id/projects_cover_row_image"
android:layout_width="50dip"
android:layout_height="50dip"
android:contentDescription="@string/projects_image_content"/>
</LinearLayout>
...
</RelativeLayout>
完全摆脱了我的问题,似乎是最好的解决方案