私はアンドロイドでアラームを設定することについてほとんど知識がありません。以下に示すように、アラームを設定するためのコードをいくつか書きました。単一のアクティビティを使用する場合、私にとってはうまくいきました
Intent intent = new Intent(getBaseContext(), ReminderService.class);
intent.putExtra("ti", name);
intent.putExtra("id", id);
PendingIntent pendingIntent = PendingIntent.getService(getBaseContext(), id,intent,PendingIntent.FLAG_UPDATE_CURRENT);
AlarmManager alarmManager =(AlarmManager)getSystemService(Context.ALARM_SERVICE);
alarmManager.set(AlarmManager.RTC_WAKEUP, targetCal.getTimeInMillis(), pendingIntent);
このコードはタブ ビューでは機能しません。私を助けてください。