0

我正在尝试让 android 通知在每天中午出现。该通知似乎在设备启动时出现一次,然后偶尔出现。

这是我的服务:

public class myService extends Service {
public static final String TAG = "LocationLoggerServiceManager";
@Override
public void onCreate() {
    // TODO Auto-generated method stub
    super.onCreate();
    Log.v(TAG, "on onCreate");
}


@Override
public int onStartCommand(Intent intent, int flags, int startId)
{
    PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, LoginActivity.class), 0);

    NotificationCompat.Builder mBuilder =
            new NotificationCompat.Builder(this)
            .setSmallIcon(R.drawable.ic_launcher)
            .setContentTitle("App name")
            .setContentText("Notification")
            .setContentIntent(contentIntent)
            .setDefaults(Notification.DEFAULT_SOUND)
            .setAutoCancel(true);
    NotificationManager mNotificationManager =
        (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
    mNotificationManager.notify("main", 1, mBuilder.build());

    return super.onStartCommand(intent, flags, startId);
}

@Override
public IBinder onBind(Intent intent) {
    // TODO Auto-generated method stub
    return null;
}
}

和接收器:

   public class MyBroadcastReceiver extends BroadcastReceiver {

public static final String TAG = "LocationLoggerServiceManager";
@Override
public void onReceive(Context context, Intent intent) {
    Log.d(TAG, "Broadcast Received");
    handleMessage(context, intent);
}


private void handleMessage(Context context, Intent intent)
{
    PendingIntent contentIntent = PendingIntent.getService(context, 0, new Intent(context, myService.class), 0);

    AlarmManager alarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
    alarmManager.cancel(contentIntent);
    Calendar calendar = Calendar.getInstance();
    calendar.set(Calendar.HOUR_OF_DAY, 12);
    calendar.set(Calendar.MINUTE, 00);
    calendar.set(Calendar.SECOND, 00);
    alarmManager.setRepeating(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), 24*60*60*1000 , contentIntent);
}
}

任何指针表示赞赏。谢谢你。

4

2 回答 2

1

我试图建立自己的通知/警报类。我发现管理它的唯一方法是扩展 Android 日历。

如果您想以这种方式尝试,请先查看此链接:

http://developer.android.com/guide/topics/providers/calendar-provider.html

我有一个这种方法的例子,但是我在工作,如果你需要,我可以稍后提供我的代码!

于 2013-08-09T19:26:31.263 回答
1

可能发生的情况是系统会杀死您的 Service 以释放内存,并且由于超类的onStartCommand()return START_STICKY,稍后会重新创建它,从而导致您的通知偶尔出现。

真的,如果服务的目的只是发出通知,请考虑将那部分代码移动到某种广播接收器或在创建通知后停止服务。

于 2013-08-09T19:38:23.583 回答