在Android开发中,闪屏页面是指应用程序启动时展示的第一个页面,通常用来展示应用的logo或者介绍信息,让用户在应用加载完毕前看到一个友好的界面。本文将介绍如何实现一个简单的Android闪屏页面。
一、创建一个新的SplashActivity
首先,在Android Studio中创建一个新的Activity作为闪屏页面。可以在res/layout文件夹下创建一个新的布局文件作为闪屏页面的布局。
二、编辑activity_splash.xml
在闪屏页面的布局文件中,可以添加一个ImageView用来展示logo,或者添加一些文本信息作为介绍。可以根据实际需求设计界面布局(我这里用的是一张图片)。
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".SplashActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/logo"
android:layout_centerInParent="true"/>
</RelativeLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
三、编辑SplashActivity.java
闪屏页面一般只需要显示几秒钟,然后跳转到应用的主界面。可以通过定时器来实现闪屏页面的显示时长。
通过意图跳转到MainActivity(后面我会改成登录页)
package com.example.test01;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
public class SplashActivity extends AppCompatActivity {
private static final int SPLASH_DISPLAY_LENGTH = 2000; // 闪屏页面显示时长
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent mainIntent = new Intent(SplashActivity.this, MainActivity.class);
startActivity(mainIntent);
finish();
}
}, SPLASH_DISPLAY_LENGTH);
}
}
注意
要在 AndroidManifest.xml 把SplashActivity.java设置为默认打开项
<!-- 将闪屏页作为首页-->
<activity
android:name=".SplashActivity"
android:exported="true" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
补充: 去掉标题栏
在需要去除标题栏的Activity里面的onCreate()方法中加入下面一段代码
//去除默认标题栏
ActionBar actionBar=getSupportActionBar();
if(actionBar!=null){
actionBar.hide();
}
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » 01-android studio实现闪屏页功能
发表评论 取消回复