-
Notifications
You must be signed in to change notification settings - Fork 168
启动页优化
张钦 edited this page Aug 2, 2018
·
2 revisions
- 设置style样式
<!--启动页-->
<style name="WelcomeStyle" parent="AppTheme">
<item name="android:windowBackground">@drawable/splish_bg</item>
</style>
- Manifest
<!-- 程序入口 -->
<activity android:name=".SplashActivity"
android:theme="@style/WelcomeStyle">
- 在Activity中设置样式,不然app会闪退(可能与引入的QMUI有关)
@Override
protected void initEventAndData() {
// 设置主题
this.setTheme(R.style.AppTheme);
}