我想检查是否正在使用我的应用程序播放音乐。我已完成我的应用程序,它只能工作一次。但我想知道我们怎样才能反复检查这个。
这是我的代码。但是这段代码只检查音乐是否有效。
siz
答案 0 :(得分:0)
由ScottMcGready告知,请关注他的建议
以下是您的问题的答案 -
//Declare the timer
Timer t = new Timer();
//Set the schedule function and rate
t.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
//here you can set check of players active ness
//Called each time when 2000 milliseconds (2 second)
}
},
//Set how long before to start calling the TimerTask (in milliseconds)
0,
//Set the amount of time between each execution (in milliseconds)
1000);
如果你想取消任务,只需调用t.cancle()