gpt4 book ai didi

java - Android 启动画面不显示

转载 作者:行者123 更新时间:2023-12-02 10:11:19 24 4
gpt4 key购买 nike

我正在尝试在我的应用程序中实现闪屏。不幸的是,我现在使用的代码没有出现任何内容,它只是直接跳到我的第一个 Activity 。以下是我的 launch_screen.xml 文件中的代码,该文件位于我的可绘制文件夹中:

    <layer-list xmlns:android="http://schemas.android.com/apk/res/android" android:opacity="opaque">

<item android:drawable="@android:color/white"/>

<item
android:drawable="@drawable/ic_splashscreen2"
android:gravity="center"
/>

</layer-list>

请注意,可绘制文件是 vector 资源。

这是来自 styles.xml 文件的代码,我在其中使用 launch_screen.xml 文件创建一个新主题:

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

我的 list 中的代码:

<activity android:name=".ViewEventsActivity"
android:theme="@style/AppTheme.Launcher">
<intent-filter>
<action android:name="android.intent.action.MAIN"
/>

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

谁能告诉我我做错了什么以及如何解决这个问题?

最佳答案

如果您不使用单独的 Activity 作为启动屏幕,您可以在 Manifest 文件中的 Activity 上设置启动主题:

<activity 
android:name=".MainActivity"
android:theme="@style/AppTheme.Launcher">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>

样式.xml

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

onCreate super 调用之前的 Activity 中将主题重置为您的 AppTheme

@Override
protected void onCreate(Bundle savedInstanceState) {
setTheme(R.style.AppTheme);
super.onCreate(savedInstanceState);
}

关于java - Android 启动画面不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54984139/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com