0

AlarmManager を使用してアラームを設定していますが、その ID を sqlite db に保存したいのですが、アラームを設定するとすぐに起動します。解決策をグーグル検索しましたが、要件に従って見つかりませんでした。間違っている可能性があります。私の日時ピッカーウィジェットからの日時、
私は日時ピッカーを次のように使用しています:

final DatePicker datePicker = (DatePicker)dialog.findViewById(R.id.datePicker);
final TimePicker timePicker = (TimePicker)dialog.findViewById(R.id.timePicker);

次に、ダイアログが表示され、日付と時刻を変更してから、次のように取得します。

Calendar calendar = Calendar.getInstance();
calendar.set(datePicker.getYear(), datePicker.getMonth(), datePicker.getDayOfMonth(), 
timePicker.getCurrentHour(), timePicker.getCurrentMinute(), 0);
timeSetForAlert = calendar.getTimeInMillis()/1000;

そして、これを次のようにサービスハンドラーに渡します。

Intent myIntent = new Intent(thisContext, MyReceiver.class);
myIntent.putExtra("timeSetForAlert", timeSetForAlert);
pendingIntent = PendingIntent.getBroadcast(thisContext, 0, myIntent,0);

AlarmManager alarmManager = (AlarmManager)getSystemService(ALARM_SERVICE);
alarmManager.set(AlarmManager.RTC, timeSetForAlert, pendingIntent);

ここでは、意図を持ってアラーム サービスを開始するブロードキャスト レシーバーをスキップしていますが、アラーム サービスは次のとおりです。

public void onStart(Intent intent, int startId)
{
       super.onStart(intent, startId);

   long timeSetForAlert = intent.getLongExtra("timeSetForAlert", 0);
   mManager = (NotificationManager) thisContext.getSystemService(thisContext.NOTIFICATION_SERVICE);

   Intent intent1 = new Intent(thisContext,MainActivity.class);

   Notification notification = new Notification(R.drawable.ic_launcher,"This is a test message!", timeSetForAlert);

   intent1.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP| Intent.FLAG_ACTIVITY_CLEAR_TOP);

   PendingIntent pendingNotificationIntent = PendingIntent.getActivity( thisContext,0, intent1,PendingIntent.FLAG_UPDATE_CURRENT);
   notification.flags |= Notification.FLAG_AUTO_CANCEL;
   notification.setLatestEventInfo(thisContext, "Notification..", "This is a test message!", pendingNotificationIntent);

   mManager.notify(startId, notification);
   Toast.makeText(thisContext, startId+"", Toast.LENGTH_SHORT).show();
}

提案してください:
1) - アラームがすぐに起動する理由
2) - データベースのどこに保存すればよいですか?

4

2 に答える 2

1

これを使ってみてください

 Calendar calendar = Calendar.getInstance();
 calendar.set(datePicker.getYear(), datePicker.getMonth(), datePicker.getDayOfMonth(), 
 timePicker.getCurrentHour(), timePicker.getCurrentMinute(), 0);
 timeSetForAlert = calendar.getTimeInMillis();//try without dividing with 1000
于 2013-11-13T10:09:30.940 に答える
0

このように解決できます。両方の答えを受け入れる..コード:これの代わりに

        pendingIntent = PendingIntent.getBroadcast(thisContext, 0, myIntent,0);

        PendingIntent pi = PendingIntent.getBroadcast(
                getApplicationContext(), uniqueValue, intent, 0);

"0" の代わりに、2 番目のパラメーターとして一意の値を使用して、multipleBroadcast を取得します。

于 2013-11-13T10:26:50.333 に答える