android 闪屏动态界面,设置闪屏以及跳转到登陆界面实例演示完整版的代码
时间: 2023-12-18 11:03:10 浏览: 144
好的,以下是一个Android闪屏动态界面的实例演示,包括设置闪屏以及跳转到登录界面的完整代码。
1. 首先,在res目录下创建一个名为splash.xml的布局文件,用于设置闪屏动态界面的UI。代码如下:
```
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/splash_bg">
<ImageView
android:id="@+id/splash_iv_logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@drawable/logo" />
<TextView
android:id="@+id/splash_tv_appname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/splash_iv_logo"
android:layout_centerHorizontal="true"
android:text="My App"
android:textColor="#FFFFFF"
android:textSize="20sp" />
</RelativeLayout>
```
2. 在res目录下创建一个名为splash_bg.xml的drawable文件,用于设置闪屏动态界面的背景图片。代码如下:
```
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="45"
android:centerColor="#00BFFF"
android:endColor="#1E90FF"
android:startColor="#6495ED"
android:type="linear" />
</shape>
```
3. 在AndroidManifest.xml文件中设置闪屏动态界面为启动界面。代码如下:
```
<activity
android:name=".SplashActivity"
android:theme="@style/SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
```
4. 在res/values/styles.xml文件中定义SplashTheme主题,用于设置闪屏动态界面的样式。代码如下:
```
<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowBackground">@drawable/splash_bg</item>
</style>
```
5. 在SplashActivity.java文件中编写代码,实现闪屏动态界面的设置和跳转到登录界面。代码如下:
```
public class SplashActivity extends AppCompatActivity {
private static final int SPLASH_TIME_OUT = 2000; // 闪屏停留时间
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
// 设置闪屏动态界面
ImageView ivLogo = findViewById(R.id.splash_iv_logo);
Animation animation = AnimationUtils.loadAnimation(this, R.anim.splash_anim);
ivLogo.startAnimation(animation);
// 延迟跳转到登录界面
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(SplashActivity.this, LoginActivity.class);
startActivity(intent);
finish();
}
}, SPLASH_TIME_OUT);
}
}
```
6. 最后,在res/anim目录下创建一个名为splash_anim.xml的动画文件,用于设置闪屏动态界面中Logo的动画效果。代码如下:
```
<?xml version="1.0" encoding="utf-8"?>
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="2000"
android:fromAlpha="0.0"
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
android:toAlpha="1.0" />
```
以上就是一个Android闪屏动态界面的实例演示,包括设置闪屏以及跳转到登录界面的完整代码。希望对您有所帮助!
阅读全文