Skip to content

启动页优化

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