我正在尝试在我的应用程序中实现启动画面。不幸的是,我现在使用的代码没有出现任何内容,它只是直接跳到我的第一个活动中。这是我的 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>
请注意,可绘制文件是矢量资源。
这是我的 styles.xml 文件中的代码,我使用这个 launch_screen.xml 文件创建了一个新主题:
<style name="AppTheme.Launcher">
<item name="android:windowBackground">@drawable/launch_screen</item>
我的清单中的代码:
<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>
谁能告诉我我做错了什么以及如何解决这个问题?
一只斗牛犬
万千封印
Cats萌萌
一只名叫tom的猫
相关分类