Android Activity切換(跳轉)時出現黑屏的解決辦法

來源:互聯網
上載者:User

  在兩個Activity跳轉時,由於第二個Activity在啟動時載入了較多資料,就會在啟動之前出現一個短暫的黑屏時間,解決這個問題比較簡單的處理方法是將第二個Activity的主題設定成透明的,這樣在啟動第二個Activity時的黑屏就變成了顯示第一個Activity介面。這個分兩步完成:
第一步:xxx/res/values/styles.xml中加入自訂Activity的Theme,如下所示:

[html]  <style name="Transparent" parent="android:Theme.Light"> 
        <!--將Activity的Theme設定成透明--> 
        <item name="android:windowIsTranslucent">true</item> 
    </style> 

<style name="Transparent" parent="android:Theme.Light">
        <!--將Activity的Theme設定成透明-->
        <item name="android:windowIsTranslucent">true</item>
    </style>第二步:在AndroidManifest.xml中將第二個Activity的"android:theme"屬性設定成剛才自訂的主題樣式。如下所示:

[html]  <activity 
    android:name="com.yutao.customer.CustomerActivity" 
    android:label="@string/app_name" 
    android:theme="@style/Transparent" 

        <activity
            android:name="com.yutao.customer.CustomerActivity"
            android:label="@string/app_name"
            android:theme="@style/Transparent"    到此應該就不會出現那個討厭的黑屏了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.