本文主要是介绍闪屏页的实现笔记,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.准备一张图片 background_splash
2.将这张图片设置到SplashActivity的主题中作为背景。进入你的style.xml文件,然后为闪屏页添加一个新的主题:
<resources><!-- Base application theme. --><style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"><!-- Customize your theme here. --></style><style name="SplashTheme" parent="Theme.AppCompat.NoActionBar"><item name="android:windowBackground">@drawable/background_splash</item></style>
</resources>
3.在清单文件中设置:
<activity
android:name=".SplashActivity"android:theme="@style/SplashTheme"><intent-filter><action android:name="android.intent.action.MAIN" /><category android:name="android.intent.category.LAUNCHER" /></intent-filter>
</activity>
原文链接
本文转载只为技术交流,若侵权,请邮件至shuzhuchengfu@163.com联系我下架本文!
这篇关于闪屏页的实现笔记的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!