何らかの理由で、アイテムのリストをスクロールするたびに、リストビュー内の背景が消えて再表示され、実際には望ましくない「ちらつき」効果が発生します。私は次の提案を試しました: How to make a ListView transparent in Android? しかし、何らかの理由で機能しません。助言がありますか?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/screenLayout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:background="@color/title_background"
android:text="@string/whatsnew_title"
>
</TextView>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
</ListView>
</LinearLayout>