欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

點(diǎn)擊圖標(biāo)進(jìn)入指定瀏覽器將首頁設(shè)置全透明解決一閃而過問題

 更新時(shí)間:2014年08月19日 10:17:51   投稿:whsnow  
進(jìn)入瀏覽器之前有一個(gè)頁面閃了一下,那是因?yàn)閺哪莻€(gè)空白的首頁跳過去的。解決的辦法是把他變成透明的就好了

點(diǎn)擊圖標(biāo)進(jìn)入指定瀏覽器。

只需在onCreate()方法里添加如下代碼:

String url = "http://tiger-kfphone.com/"; 
Uri u = Uri.parse(url); 
Intent intent = new Intent(Intent.ACTION_VIEW, u); 
// intent.setData(u); 
// intent.setClassName("com.android.browser", 
// "com.android.browser.BrowserActivity"); 
startActivity(intent); 
finish();

但是在進(jìn)入瀏覽器之前有一個(gè)頁面閃了一下,那是因?yàn)閺哪莻€(gè)空白的首頁跳過去的??蛻粽f不要那個(gè)一閃而過的頁面,說是個(gè)bug。

最后解決的辦法是把他變成透明的就好了。

在styles.xml里添加如下代碼:

<style name="Translucent_NoTitle" parent="android:style/Theme.Dialog"> 
<item name="android:windowNoTitle">true</item> 
<item name="android:background">#00000000</item> 
<item name="android:windowBackground">@android:color/transparent</item> 
<item name="android:colorBackgroundCacheHint">@null</item> 
<item name="android:windowIsTranslucent">true</item> 
</style>

然后在AndroidManifest里添加如下代碼:

<activity 
android:name="com.hklt.link.MainActivity" 
android:label="@string/app_name" 
android:theme="@style/Translucent_NoTitle" > 
<intent-filter> 
<action android:name="android.intent.action.MAIN" /> 
<category android:name="android.intent.category.LAUNCHER" /> 
</intent-filter> 
</activity>

相關(guān)文章

最新評(píng)論