1
我做在Android Studio中的一個小程序,我需要幫助,在此代碼:Android的工作室:在IntentFilter的需要幫助
Intent myIntent = new Intent(this , NotifyService.class);
PendingIntent pendingIntent = PendingIntent.getService(this, 0, myIntent, 0);
AlarmManager alarmManager = (AlarmManager)getSystemService(ALARM_SERVICE);
Calendar calendar = Calendar.getInstance();
alarmManager.setInexactRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP, SystemClock.elapsedRealtime() + AlarmManager.INTERVAL_FIFTEEN_MINUTES, AlarmManager.INTERVAL_DAY, pendingIntent);
BroadReceiver receiver = new BroadReceiver();
IntentFilter filter = new IntentFilter("I NEED HELP HERE!");
registerReceiver(receiver, filter);
return super.onStartCommand(intent, flags, startId);
因此,在該行我需要幫助這裏,當我寫Intent.ACTION_AIRPLANE_MODE_CHANGED
它應該是運行,但我需要上面的代碼來執行ACTION_AIRPLANE_MODE_CHANGED
的功能。基本上,每15分鐘後臺程序(此代碼在那裏)應該打開通知。
如果你需要更多的代碼,只需說。
但我不想要一個行動,我想要的是上面的代碼工作就像一個行動。 –
而且顯然希望這個在後臺工作 –
@AntónioPaulo行動有什麼問題? – MightySeal