美文网首页
启动白屏 解决方案

启动白屏 解决方案

作者: 詹徐照 | 来源:发表于2017-11-22 13:44 被阅读9次

给activity设置<item name="android:windowIsTranslucent">true</item>的style

        <activity
            android:name=".activity.WelcomeActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar.FullScreen.Translucent">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>

                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
    <style name="AppTheme.FullScreen.Translucent">
        <item name="android:windowIsTranslucent">true</item>
    </style>

相关文章

网友评论

      本文标题:启动白屏 解决方案

      本文链接:https://www.haomeiwen.com/subject/alinvxtx.html