gpt4 book ai didi

java - Thread 类型的方法 pause() 未定义?

转载 作者:搜寻专家 更新时间:2023-11-01 09:08:41 25 4
gpt4 key购买 nike

我是 Java 的新手,请帮帮我,我无法识别 Activity super.pause();从 biginig 开始,它是 .OnPause .OnResume .. .. .. 就像那样然后我被迫将所有更改为 .pause .resume .. .. http://i.stack.imgur.com/q5N7W.jpg

公共(public)类 CleaningActivity 扩展 Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);
} Thread logoTimer = new Thread(){
public void run(){
try{
int logoTimer = 0;
while (logoTimer <21000){
sleep (100);
logoTimer = logoTimer +100;
}
startActivity(new Intent("com.iwilldothis.CLEARSCREEN"));
} catch (InterruptedException e){
// TODO Auto-generated catch block
e.printStackTrace();}
finally{
finish();
}
};


protected void onStart() {
// TODO Auto-generated method stub
super.start();
}

protected void onResume() {
// TODO Auto-generated method stub
super.resume();
}

protected void onPause() {
// TODO Auto-generated method stub
super.pause();
}

protected void onStop() {
// TODO Auto-generated method stub
super.stop();
}

protected void onDestroy() {
// TODO Auto-generated method stub
super.destroy();}
};
}

最佳答案

您尝试调用的变量 pause() on 不是你想的那样。 (从你的标题来看,它是 Thread 类型。)或者,它是 Thread.sleep 您正在寻找的。

关于java - Thread 类型的方法 pause() 未定义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9968157/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com