0

ListViewクリックするとActivityWebView. 私のアプリケーションの背景色は常に黒ですが、ユーザーがアイテムをタップすると、ニュースの背景色としてListView設定したため、背景色がしばらく白くなり、再び黒くなります。「ホワイトトランジション」を回避する方法はありますか?#000000WebViewActivity

4

1 に答える 1

1

//そのためには、

cacheColor を透明にする android:cacheColorHint="#00000000"

<ListView
    android:id="@+id/my_list"
    android:layout_width="match_parent"
    android:layout_height="fill_parent"
    android:layout_below="@id/horizontalline"
    android:background="#000000" 
    android:cacheColorHint="#00000000" 
    android:layout_above="@id/AddButton"
    android:drawSelectorOnTop="false"
     />
于 2012-05-18T16:03:09.947 に答える