たとえば、月の第1、第2、第3日に表示されるローカル通知を作成したいとします(例:11am)。 12時30分、14時30分、18時30分に3日連続で通知を設定しましたが、14時30分に1回しか表示されませんでした。 その時間のアンドロイドモニタをチェックしたとき、アンドロイドがその秒をスキップするように見えますか?ここ は私のコードです:Androidのローカル通知が表示されない場合があります
ここのonCreate
ここ`@EService
public class NotifiService extends Service {
public int counter = 0;
public NotifiService(Context applicationContext) {
super();
Log.w("here!", "here i am");
}
public NotifiService(){
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
super.onStartCommand(intent,flags,startId);
Log.i("-----b", "onStartCommand");
startTimer();
return Service.START_STICKY; //super.onStartCommand(intent, flags, startId);
}
@Override
public void onDestroy() {
super.onDestroy();
Intent broadCastIntent = new Intent("com.Yyyyy.Xxxxx.Yyyyy.BootBro");
sendBroadcast(broadCastIntent);
stopTimerTask();
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Background
public void checkDate(){
Log.w("f", "if working");
Calendar cal = Calendar.getInstance();
int d = cal.get(Calendar.DAY_OF_MONTH);
int h = cal.get(Calendar.HOUR_OF_DAY);
int s = cal.get(Calendar.SECOND);
int m = cal.get(Calendar.MINUTE);
if(d==17 || d == 18 || d == 19){
if (h == 12 || h == 14 || h == 16) {
if (m == 30) {
if (s == 30) {
Log.w("notify", "working>>>>");
Intent intent = new Intent(getApplicationContext(), MainActivity_.class);
PendingIntent contentIntent = PendingIntent.getActivity(getApplicationContext(), 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
NotificationCompat.Builder b = new NotificationCompat.Builder(getApplicationContext());
b.setAutoCancel(false)
.setDefaults(Notification.DEFAULT_ALL)
.setWhen(System.currentTimeMillis())
.setSmallIcon(R.drawable.ic_app_icon)
.setTicker("FabReminder")
.setContentTitle("FabReminder")
.setContentText(getString(R.string.notification))
.setDefaults(Notification.DEFAULT_LIGHTS | Notification.DEFAULT_SOUND)
.setContentIntent(contentIntent);
//.setContentInfo("Tap this bar and select shop");
NotificationManager notificationManager = (NotificationManager) getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(1, b.build());
}
}
}
}
}
private Timer timer;
private TimerTask timerTask;
long oldTime=0;
public void stopTimerTask(){
if (timer != null){
timer.cancel();
timer = null;
}
}
public void initializeTimerTask(){
timerTask = new TimerTask() {
@Override
public void run() {
checkDate();
}
};
}
public void startTimer(){
timer = new Timer();
initializeTimerTask();
timer.schedule(timerTask,1000,1000);
}
@Override
public void onTaskRemoved(Intent rootIntent) {
super.onTaskRemoved(rootIntent);
Log.w("killed task >>>"," task killed");
Intent broadCastIntent = new Intent("com.Yyyyy.Xxxxx.Yyyyy.BootBro");
sendBroadcast(broadCastIntent);
}`
の主な活動のセットアップで私のサービスは私BroadcastReceiverです:
`パブリッククラスBootBroはBroadcastReceiver { 公共int型MIDを拡張します。
@Override
public void onReceive(Context context, Intent intent) {
//context.startService(new Intent(context, NotifiService_.class));
Log.w(BootBro.class.getSimpleName(), "Service stops!");
context.startService(new Intent(context, NotifiService_.class));
}
} `
とAndroidManifest
`<service android:name="com.Yyyyy.Xxxx.Yyyyy.NotifiService_" android:enabled="true"/>
<receiver android:name="com.Yyyyy.Xxxx.Yyyy.BootBro" android:enabled="true"
android:exported="true"
android:label="RestartServiceWhenStopped">
<intent-filter><action android:name="android.intent.action.BOOT_COMPLETED">
</action>
<action android:name="com.Yyyyy.Xxxx.Yyyy.BootBro"/>
</intent-filter>
</receiver>`
違う方法でやりますか? – AndroidStorm
私はあなたのオプションが素晴らしいと思う、たくさんありがとう。私は今日それをチェックする:) – Gorthez