handler的延迟发送消息(欢迎页面延迟跳转activity,解决跳转时的bug)
程序员文章站
2022-07-14 17:58:57
...
- 获取textview的ID,以方便 handler更新UI
TextView mTextview = (TextView) findViewById(R.id.textview);
- 创建一个handler用来发送消息
private Handler handler = new Handler() {
//定义一个跳转秒数
private int i = 3;
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
//判断发过来的消息
if (msg.what == 0) {
i--;
if (i==0){
//跳转界面的方法
intent();
}else {
//更改UI
mT.setText(i+"秒跳转");
//发送消息
handler.sendEmptyMessageDelayed(0, 1000);
}
}
}
};
- 延迟发送消息更新UI,放在主线程中,时代码一进去就执行
handler.sendEmptyMessageDelayed(0, 1000);
- 给TextView设置一个点击事件(也可以在布局中添加一个button按钮,给其设置点击事件)
- handler设置延迟发消息还没结束就点击按钮或是其它的跳转,就算消除了当前activityhandler也会继续执行从而出现二次跳转的bug,所以就得给handler的消息设置为空
- `//跳转的点击事件
mT.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//解决点击跳转activity时handler任然执行而产生的bag,将下次设置为空
handler.removeCallbacksAndMessages(null);
intent();
}
});`
- 创建一个跳转activity的方法增加代码的服用行
//跳转的方法
public void intent(){
Intent intent = new Intent(this, Main2Activity.class);
startActivity(intent);
finish();
}
- 在销毁的方法中关闭当前的activity,以防止返回时回到欢迎界面
@Override
protected void onDestroy() {
super.onDestroy();
//销毁当前的activity
finish();
}
上一篇: 使用Handler实现延迟跳转界面
下一篇: JS延迟页面跳转