欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android实现欢迎页快速启动的方法

时间:2023-02-09 13:13:53|栏目:Android代码|点击:

Android 欢迎页快速启动

大家应该都知道,在默认情况下,Android App在点击App logo到App完全启动这之间会有一段时间空白期。那么如何做到在用户点击logo图标之后立即打开App的界面而不是一段白屏或黑屏呢?

设置xml

在drawable下建立welcome.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
 <!--背景色-->
 <item android:drawable="@color/white"/>
 <item>
  <!--图片-->
  <bitmap
   android:gravity="center"
   android:src="@mipmap/welcome_page"/>
 </item>
</layer-list>

设置style

<!-- Base application theme. -->
 <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
  <!-- Customize your theme here. -->
 </style>
 <style name="WelcomeThem" parent="AppTheme">
  <item name="android:windowBackground">@drawable/welcome</item>
 </style>

清单文件中配置style

<!-- 欢迎页 -->
  <activity
   android:name=".ui.WelcomeActivity"
   android:windowSoftInputMode="adjustNothing" android:theme="@style/WelcomeThem">
   <intent-filter>
    <action android:name="android.intent.action.MAIN"/>
    <category android:name="android.intent.category.LAUNCHER"/>
   </intent-filter>
  </activity>

Activity中不需要设置setContentView()

public class WelcomeActivity extends AppCompatActivity {
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  Intent intent = new Intent(this, MainActivity.class);
  startActivity(intent);
  finish();
 }
}

不需要为你的SplashActivity设置一个视图,这个视图来自于主题,在主题中为你的SplashActivity设置UI就足够了。

总结

上一篇:手把手教你实现Android编译期注解

栏    目:Android代码

下一篇:Android利用Palette实现提取图片颜色

本文标题:Android实现欢迎页快速启动的方法

本文地址:http://www.codeinn.net/misctech/225398.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有