我创建了一个启动事件并将其设置为休眠 3 秒。一切正常,但是当您退出应用程序时,它会带您回到初始状态。有没有办法用我拥有的代码来杀死它,或者我需要以不同的方式编写它。
public class splash extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);
Thread timer = new Thread(){
public void run(){
try{
sleep(3000);
} catch (InterruptedException e){
e.printStackTrace();
}finally{
Intent openApp = new Intent("com.iqmobile.chris.IQMOBILEACTIVITY");
startActivity(openApp);
}
}
};
timer.start();
}
}