Android:活动过渡

时间:2012-05-18 15:58:45

标签: android webview

我有ListView,点击后会启动包含Activity的新WebView。 我的应用程序的背景颜色总是黑色,但是当用户点击ListView项目时,背景颜色会变为白色一段时间再变黑,因为我将#000000设置为{{1}的背景颜色和新闻WebView。 有没有办法避免“白色过渡”?

1 个答案:

答案 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"
     />