@mipmap/ic_launcher--> name="android:windowBackground">@mipmap/aaa name="android:windowNoTitle">true name_安卓启动页">
赞
踩
首先在style里面加入
<style name="ThemeSplash" parent="Theme.AppCompat.Light.NoActionBar"> <!--<item name="android:background">@mipmap/ic_launcher</item>--> <item name="android:windowBackground">@mipmap/aaa</item> <item name="android:windowNoTitle">true</item> <item name="android:windowFullscreen">true</item> <item name="windowActionBar">false</item> <item name="windowNoTitle">true</item> </style>然后创建SplashActivity 在AndroidManifest里面设置为MAIN 并把theme设置为上面创建的style
<activity android:name=".Splash" android:theme="@style/ThemeSplash"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>SplashActivity里面可以做一个延迟几秒跳转
try { Thread.sleep(2000); } catch (InterruptedException e) { e.printStackTrace(); } Intent it = new Intent(this,MainActivity.class); startActivity(it); finish();
完成。。。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。