在Android Studio中的每个预览上显示Splashscreen主题

问题描述 投票:1回答:1

我使用自己的主题创建了一个SplashScreen ...

<style name="AppTheme.Launcher">
        <item name="android:windowBackground">@drawable/splash_test</item>
</style>

...在app加载时应用为app的主题...

android:theme="@style/AppTheme.Launcher"

...然后在onCreate of started Activity中更改为AppTheme:

setTheme(R.style.AppTheme);
super.onCreate(savedInstanceState);

所有的作品,但我有一个有趣的问题。使用Launcher主题的所有屏幕预览,现在看起来像:

enter image description here

我不能这样工作。 =)

我怎样才能避免这个“问题”?

android themes splash-screen
1个回答
0
投票

我不认为有办法解决这个问题,因为它是活动的主题

© www.soinside.com 2019 - 2024. All rights reserved.