1. 程式人生 > >android webview載入網頁按後退鍵黑屏一下問題的解決方案

android webview載入網頁按後退鍵黑屏一下問題的解決方案

出現這個問題剛開始還真是一頭霧水,不知道怎麼解決,後來跟同事一交流,發現凡是這種問題,很大一部分原因是application的style,或者activity的style設定問題,比如啟動頁黑屏問題也是style問題等,因為你不設定的話,可能就是系統給你設定的style,但是不符合你得要求,還是回到剛剛的問題,webview載入網頁按後退鍵黑屏一下的問題,我查詢發現我activity也沒什麼設定在配置檔案中,然後就檢查Application屬性android:theme設定為

<style name="contentoverlay" parent="@android:style/Theme.Light">

        <item name="android:windowNoTitle">true</item>
<item name="android:windowIsTranslucent">false</item>
<item name="android:windowContentOverlay">@null</item>

</style>

發現我android:windowIsTranslucent是設定為true,後來改為false就好了,後來查一下這個屬性的意思,是否半透明,但為什麼會引起這個問題,說實話我也沒想通!在此就記錄下,說不定以後會有人遇到類似的問題,