ボタンが押されたときに AlarManager を起動したい。問題は次のとおりです。アプリを起動すると AM が開始されます :/
私のコード:
public void scheduleAlarm()
{
int time = 10 * 1000;
intentAlarm = new Intent(this, AlarmReciever.class);
alarm = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
alarm.setRepeating(AlarmManager.RTC_WAKEUP, time, time, PendingIntent.getBroadcast(this,1, intentAlarm, PendingIntent.FLAG_UPDATE_CURRENT));
}
そして、ボタンの onClickListener でこれを呼び出そうとします。しかし、それは活動の最初から始まります:/
誰でも私を助けることができますか?