首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

闪屏有关问题

2012-09-07 
闪屏问题今天弄闪屏时,在闪的时间内按下返回建闪屏停止,但是时间到了还会加载主程序,我不想在加载主程序,

闪屏问题

今天弄闪屏时,在闪的时间内按下返回建闪屏停止,但是时间到了还会加载主程序,我不想在加载主程序,按返回键我想结束程序:

private static final int SPLASH_DISPLAY_TIME = 3000;?
Handler ur = new Handler();?
Runnable yourRunnable = new Runnable() { ? ? ??
? ? ? ? public void run() { ? ? ?
? ? ? ? ? ? ? ? mainIntent = new Intent(SplashScreen.this,MyApp.class);?
? ? ? ? ? ? ? ? SplashScreen.this.startActivity(mainIntent);?
? ? ? ? ? ? ? ? SplashScreen.this.finish(); ?
? ? ? ? ? ? ? ? overridePendingTransition(R.anim.fadein,?
? ? ? ? ? ? ? ? ? ? ? ? R.anim.fadeout); ? ??
? ? ? ? }?
};?
ur.postDelayed(yourRunnable, SPLASH_DISPLAY_TIME);?
然后

onDestroy 中调用

ur.removeCallbacks(yourRunnable);?

热点排行