当前位置:   article > 正文

Android开发--简单实现Android应用的启动页_android 启动页

android 启动页

Android启动页效果展示

平时打开手机的应用时,会跳出来3秒钟的广告后,再进入应用。今天我们就来简单实现一下引导页的功能。

1、首先,新建一个activity页面,命名:SplashActivity

在 activity_splash.xml中添加启动页内容,我这里添加了一个图片(图片放在drawable文件下),代码如下:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@drawable/zhz"
  8. tools:context=".SplashActivity">
  9. <ImageView
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. android:src="@drawable/zhz"></ImageView>
  13. </androidx.constraintlayout.widget.ConstraintLayout>

在java文件中,将启动页状态栏和标题栏隐藏,并设置启动页显示时间为3秒。

SplashActivity.java代码如下:

  1. public class SplashActivity extends AppCompatActivity {
  2. @Override
  3. protected void onCreate(Bundle savedInstanceState) {
  4. super.onCreate(savedInstanceState);
  5. //隐藏状态栏
  6. getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
  7. //隐藏标题栏
  8. getSupportActionBar().hide();
  9. setContentView(R.layout.activity_splash);
  10. //创建子线程
  11. Thread mThread=new Thread(){
  12. @Override
  13. public void run() {
  14. super.run();
  15. try {
  16. sleep(3000);//使程序休眠3秒
  17. Intent intent=new Intent(getApplicationContext(),MainActivity.class);
  18. startActivity(intent);
  19. finish();
  20. }catch (Exception e){
  21. e.printStackTrace();
  22. }
  23. }
  24. };
  25. mThread.start();//启动线程
  26. }
  27. }

2、在AndroidManifest.xml文件中,设置启动页为.SplashActivity,代码如下:

  1. <activity android:name=".StartActivity">
  2. <intent-filter>
  3. <action android:name="android.intent.action.MAIN" />
  4. <category android:name="android.intent.category.LAUNCHER" />
  5. </intent-filter>
  6. </activity>

3、我这里将应用图标改为自己的图片了,你们根据自己需要(不改也行的),代码如下:

 到这里,你就完成了所有步骤了,运行一下试试吧!

运行结果如下:

Android启动页效果展示

当然,你还可以根据自己的需要,为启动页多添加些样式,加油!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/144620
推荐阅读