延迟跳转到操作
//延迟几秒中进入引导页面或者是主页面
//延迟3秒钟给handler发送一个消息
new Handler(){
public void handleMessage(android.os.Message msg) {
//跳转操作
//如果用户是第一次进入的话,跳转到引导界面,不是第一次,跳转到主界面
//判断用户是否是第一次进入
SharedPreferences sp = getSharedPreferences("config", MODE_PRIVATE);
if (sp.getBoolean("firstEnter", true)) {
//跳转到引导界面
Intent intent = new Intent(MainActivity.this,GuideActivity.class);
startActivity(intent);
}else{
//跳转到主界面
}
};
}.sendEmptyMessageDelayed(0, 3000);//delayMillis:延迟的时间