Android で日時設定を変更するアプリを作成したのですが、テストしてみると動きません。
それはAndroid内部のシステムからのセキュリティのためですか、それとも何か問題がありますか?
これが私のコードです:
if (killed) {
// TODO Auto-generated method stub
AlarmManager a = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
long current_time_milliens = System.currentTimeMillis();
try {
a.setTime((long) current_time_milliens - 86400);
} catch (Exception e) {
// add exception handling
}