次の要素から存在する特定のリストを作成して、すべての行が左側に画像と右側にいくつかのテキストを含むスクロール可能なリストを作成しました。
「ルート」レイアウトから始めるには:
<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
したので、ルート要素にもを追加しました同じ背景で、これはリストがスクロールされたときに色を保持します...これがなぜ起こっているのか、そしてこれを解決する方法はありますか?