*注:纯属学习笔记
因为是刚入门的菜鸟,在理解欢迎界面跳转到首页的时候,比如三秒自动跳转,或者点击直接进入,会出现一定的bug,比如溢出等,自己整理了下.***适合新手
第一:首先需要判断的是WelcomeActivity接受到了触摸时间还是自动跳转,定义一个跳转到MainActivity的方法
1.第一一个isjoin判断,
private Handler handler = new Hander();private boolean isjoin =true;
public void getMainactivity(){
if(isjoin ){
isjoin = false;
Intent intent = new Intent(this,Mainactivity.class):
startActivity(intent);
finish();
}
}
2.在oncreate方法里面
handler.postDelayed(new Runnable(){
@override
public void run(){
getMainactivity();
}
},2000);
3.写触摸事件,是重写的方法
public boolean onTouchEvent(MotionEvent event){
getMainactivity();
return super.onTouchEvent(event);
}
4.最后还需要重写ondestory方法,因为会导致溢出,可以打log,查看
protected void onDestroy() { handler.removeCallbacksAndMessages(null); super.onDestroy(); }