我有ListView
,点击后会启动包含Activity
的新WebView
。
我的应用程序的背景颜色总是黑色,但是当用户点击ListView
项目时,背景颜色会变为白色一段时间再变黑,因为我将#000000
设置为{{1}的背景颜色和新闻WebView
。
有没有办法避免“白色过渡”?
答案 0 :(得分: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"
/>