我尝试学习java for android devices .. 我必须创建更新功能。但还有一个问题:怎么????
public void update(){
maindebug("update"); // This is my debug function
}
public void run(){
while(isRunning){ // isRunning is a boolean variable
SystemClock.sleep(100);
update();
}
}
和onCreate
run();
但它不起作用:(
答案 0 :(得分:0)
isRunning
必须评估为“true”才能使while循环发生。