我没有为启动画面创建单独的活动,但添加了一个主题:
<style name="SplashTheme" parent="AppTheme">
<item name="android:windowBackground">@drawable/splash</item>
</style>
字符串
刚刚更新了清单文件
<activity android:name=".MainActivity"
android:theme="@style/SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
型
我的splash xml是:
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:src="@drawable/splash"
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</FrameLayout>
型
我找到了所有的答案,这只是为了增加时间与单独的飞溅活动。
1条答案
按热度按时间up9lanfz1#
这可能不是答案,但只是想澄清一些事情.(或为将来访问此链接的人).
你知道吗..大多数人认为
Splash Screen
只是为了向用户显示交互式UI。但相信我,它比你的期望更有用。它提供了一种独特的方式来初始化应用程序的资源和检查属性等。
您可以在用户与应用程序交互之前在后台进行网络检查或大量工作。
这是启动画面的实际动机,而不仅仅是显示应用程序徽标或欢迎信息。
所以,简单点。
现在,对于你..我会建议..使用单独的
Activity
.:)