我在android中有一个音乐应用程序。访问http://www.androidhive.info/2012/03/android-building-audio-player-tutorial/ 现在我需要在特定时间关闭这个应用程序。我应该使用什么技术?
谢谢大家
我在android中有一个音乐应用程序。访问http://www.androidhive.info/2012/03/android-building-audio-player-tutorial/ 现在我需要在特定时间关闭这个应用程序。我应该使用什么技术?
谢谢大家
也许你可以使用 AlarmManager。请参阅:http: //developer.android.com/reference/android/app/AlarmManager.html 警报管理器示例
在您的 AlarmReceiver 或 AlarmService 上,对您的活动调用完成。
尝试 Timer concept
new CountDownTimer(40000, 1000) { //40000 milli seconds is total time, 1000 milli seconds is time interval
public void onTick(long millisUntilFinished) {
}
public void onFinish() {
}
}.start();