我想每天在指定时间在我的应用程序中显示通知,这些通知工作正常。当我第一次启动我的应用程序时,无论是什么时间,我都会收到一条通知,当我单击该通知时,它将带我到DetailActivity,当我单击后退按钮以转到MainActivity时,将创建另一个通知。我尝试了所有我能想到的事情,但没有任何效果。
P.S。这是我第一次使用通知和AlarmManager。
这是我来自MainActivity.java的代码
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
rvWord = findViewById(R.id.recyclerview);
rvWord.setLayoutManager(new LinearLayoutManager(getApplicationContext()));
mDBHelper = new DatabaseHelper(this);
dictionaryAdapter = new DictionaryAdapter();
dictionaryAdapter.setCursor(mDBHelper.getDictionaryWord(""));
rvWord.setAdapter(dictionaryAdapter);
// Show banner ads
mAdView = findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest);
showTimedNotification(this); // Shows Notification
showRatingDialog(); // Shows Rating Dialog
DrawerLayout drawer = findViewById(R.id.drawer_layout);
NavigationView navigationView = findViewById(R.id.nav_view);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.addDrawerListener(toggle);
toggle.syncState();
navigationView.setNavigationItemSelectedListener(this);
}
private void showTimedNotification(Context context) {
Calendar updateTime = Calendar.getInstance();
updateTime.set(Calendar.HOUR_OF_DAY, 8);
updateTime.set(Calendar.MINUTE, 5);
updateTime.set(Calendar.SECOND,10);
Intent intent = new Intent(context, AlarmReceiver.class);
PendingIntent pendingIntent = PendingIntent.getBroadcast(context,
0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
AlarmManager alarms = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
alarms.setInexactRepeating(AlarmManager.RTC_WAKEUP, updateTime.getTimeInMillis(),
AlarmManager.INTERVAL_DAY, pendingIntent);
}
答案 0 :(得分:1)
自从我使用AlarmManager已经有一段时间了,但是可以这样做是因为您将triggerAtMillis
参数设置为当前日期,时间为08:05:10,并且在这种情况下过去,它会发出警报?
每次输入MainActivity onCreate
时,都会在同一时间再次安排警报,从而重新触发警报?
您可以尝试添加:
updateTime.add(Calendar.DAY_OF_YEAR, 1);
安排闹钟使其明天早上8点触发。
如果您想更全面一点,可以检查当前时间是否在8AM之前(00:00到08:00之间),并且仅在8AM之后才添加额外的一天,但是请尝试一下,看看效果如何去。