android 页面停几秒后跳转
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 页面停几秒后跳转相关的知识,希望对你有一定的参考价值。
<span style="white-space:pre"> </span>//实现等待几秒后跳转,方法一
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(MainActivity.this,
ExampleActivity.class);
startActivity(intent);
}
}, SPLASH_DISPLAY_LENGHT);
//实现等待几秒后跳转,方法二
final Intent localIntent = new Intent(this, ExampleActivity.class);
Timer timer = new Timer();
TimerTask tast = new TimerTask() {
@Override
public void run() {
startActivity(localIntent);
}
};
timer.schedule(tast, SPLASH_DISPLAY_LENGHT);
以上是关于android 页面停几秒后跳转的主要内容,如果未能解决你的问题,请参考以下文章