何らかの理由で、アイテムのリストをスクロールするたびに、リストビュー内の背景が消えて再表示され、本当に欲しくない「ちらつき」効果が発生します。私は提案を試した:How to make a ListView transparent in Android?しかし何らかの理由で動作しません。助言がありますか?Android:ListViewフリッカーエフェクト。どのようにこれを取り除くためのヒント?
<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>
恐ろしい...あなたは私を信じません。 ..私はcacheColorHintを付けてみましたが、私が見つけたすべてのリソースはアンドロイド:cacheColorHint = "#000000"(アルファについては何も言わなかったことに気づくでしょう)...そして今、ロット! – Legend
偉大な答え男。 –
偉大で簡単な応答と一握り!!! –