android 3秒时间跳转,Android-如何显示版本号并制作3秒跳转页

前言

大家好,我是 Vic,今天给大家带来Android-如何显示版本号并制作3秒跳转页的概述,希望你们喜欢

创建布局文件

xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_height="match_parent"

android:layout_width="match_parent"

android:background="@drawable/launch_bg">

android:id="@+id/tv_version"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_centerInParent="true"

android:textColor="@android:color/white"

android:textSize="14sp"/>

创建一个版本Activity类

public class SplashActivity extends AppCompatActivity{

private TextView textView;

@Override

protected void onCreate(Bundle savedInstanceState){

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_splash);

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

textView = findViewById(R.id.tv_version);

try{

PackageInfo info = getPackageManager().getPackageInfo(getPackageName(),0);

textView.setText("version:"+info.versionName);

}catch(PackageManger.NameNotFoundException e){

e.printStackTrace();

}

Timer timer = new Timer();

TimerTask timerTask = new TimeTask(){

@Override

public void run(){

Intent intent = new Intent(SplashActivity.this,MainActivity.class);

startActivity(intent);

SplashActivity.this.finish();

}

};

timer.schedule(timerTask,3000);

}

}

在清单文件中,添加声明即可。

总结

本文讲了Android-如何显示版本号并制作3秒跳转页,如果您还有更好地理解,欢迎沟通

定位:分享 Android&Java知识点,有兴趣可以继续关注

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值