これまでのところ、このウェブサイトのおかげで、私は自分の携帯電話の電源を入れても、設定されてアクティブになるアラームを設定することができました。
ここで、イベントAのリマインダーを表示するようにアラームを設定し、イベントBのanotherリマインダーを表示する別のアラームを設定するアプリケーションが必要です。
それはイベントAのリマインダーを起動するだけなので、私は何か間違ったことをしているに違いありません。いったん設定すると、他のアラームは同じものとして理解されるようです。 :-(
これが私が2つのステップで行っていることの詳細です。
1)アクティビティから、特定の日時に受信者を呼び出すアラームを設定しました
Intent intent = new Intent(Activity_Reminder.this,
AlarmReceiver_SetOnService.class);
intent.putExtra("item_name", prescription
.getItemName());
intent
.putExtra(
"message",
Activity_Reminder.this
.getString(R.string.notif_text));
intent.putExtra("item_id", itemId);
intent.putExtra("activityToTrigg",
"com.companyName.appName.main.Activity_Reminder");
PendingIntent mAlarmSender;
mAlarmSender = PendingIntent.getBroadcast(
Activity_Reminder.this, 0, intent, 0);
long alarmTime = dateMgmt.getTimeForAlarm(pickedDate);
Calendar c = Calendar.getInstance();
c.setTimeInMillis(alarmTime);
// Schedule the alarm!
AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
am.set(AlarmManager.RTC_WAKEUP, alarmTime + 15000,
mAlarmSender);
2)受信者からサービスを呼び出します
Bundle bundle = intent.getExtras();
String itemName = bundle.getString("item_name");
String reminderOrAlarmMessage = bundle.getString("message");
String activityToTrigg = bundle.getString("activityToTrigg");
int itemId = Integer.parseInt(bundle.getString("item_id"));
NotificationManager nm = (NotificationManager) context.getSystemService("notification");
CharSequence text = itemName + " "+reminderOrAlarmMessage;
Notification notification = new Notification(R.drawable.icon, text,
System.currentTimeMillis());
Intent newIntent = new Intent();
newIntent.setAction(activityToTrigg);
newIntent.putExtra("item_id", itemId);
CharSequence text1= itemName + " "+reminderOrAlarmMessage;
CharSequence text2= context.getString(R.string.notif_Go_To_Details);
PendingIntent pIntent = PendingIntent.getActivity(context,0, newIntent, 0);
notification.setLatestEventInfo(context, text1, text2, pIntent);
notification.flags = Notification.FLAG_AUTO_CANCEL;
notification.defaults = Notification.DEFAULT_ALL;
nm.notify(itemId, notification);
前もって感謝します、
monn3t
わかりました。PendingIntentを設定すると、後で識別したい場合に備えて、一意のIDを割り当てる必要があります(変更/キャンセルするため)。
static PendingIntent getActivity(Context context, int requestCode, Intent intent, int flags)
//Retrieve a PendingIntent that will start a new activity, like calling Context.startActivity(Intent).
static PendingIntent getBroadcast(Context context, int requestCode, Intent intent, int flags)
//Retrieve a PendingIntent that will perform a broadcast, like calling Context.sendBroadcast().
要求コードはそのIDです。
コードでは、[〜#〜] same [〜#〜] PendingIntentをリセットし続け、代わりに毎回異なるRequestCodeを使用します。
PendingIntent pIntent = PendingIntent.getActivity(context,uniqueRQCODE, newIntent, 0);
整数である必要があります。アラームBからアラームAを識別できるプライマリID(itemId)があるとします。
PendingIntent.getBroadcast(......)で異なるリクエストコードを指定することにより、複数のアラームを設定できます。
複数のアラームをセットアップするために使用したアプローチは、単一のアラームを作成することです。メインアクティビティの[アラームの追加]ボタンをクリックするたびに、メインアクティビティから毎回インクリメントされるアラーム設定クラスで静的整数を初期化しました。例えば。
MainActivity.Java
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void addAlarmClick(View v) {
AlarmActivity.broadcastCode++;
startActivity(new Intent(this, AlarmActivity.class));
}
}
AlarmActivity.Java
public class AlarmActivity extends AppCompatActivity {`
//........
public static int broadcastCode=0;
//........
Intent myIntent = new Intent(AlarmActivity.this, AlarmReceiver.class);
pendingIntent = PendingIntent.getBroadcast(AlarmActivity.this,
broadcastCode, myIntent, 0);