0

私はこれまでサービスを利用したことがありません。だから、インターネット上でいくつかの悪魔をフォローした後、私の実装はこれです:

MainActivityのonResume()で、次の方法でサービスを開始しています。

protected void onResume() {
super.onResume();
startService(new Intent(MainActivity.this, NotificationsService.class));
AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
Intent i = new Intent(this, NotificationsService.class);
PendingIntent pi = PendingIntent.getService(this, 0, i, 0);
am.cancel(pi);
am.setInexactRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP,
SystemClock.elapsedRealtime() + 60000, 60000, pi);
}

そして、私のNotificationsServiceクラスは次のとおりです。

public class NotificationsService extends Service {

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        handleIntent(intent);
        return START_NOT_STICKY;
    }
    private NotificationManager nm;
    private WakeLock mWakeLock;

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

    @Override
    public void onDestroy() {
        super.onDestroy();
        mWakeLock.release();
    }

    private void showNotification() {

        nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        Notification notification = new Notification(R.drawable.icon,
                "Notification Ticker", System.currentTimeMillis());
        notification.flags = Notification.FLAG_AUTO_CANCEL;
        Date date = new Date(System.currentTimeMillis());
        Intent i = new Intent(this, NotificationsActivity.class);
        i.putExtra("notification",
                "This is the Notification " + date);
        i.putExtra("notifiedby", "xyz");
        PendingIntent contentIntent = PendingIntent.getActivity(this, 0, i,
                PendingIntent.FLAG_UPDATE_CURRENT);
        notification.setLatestEventInfo(this, "xyz",
                "This is the Notification", contentIntent);
        nm.notify(R.string.service_started, notification);
    }

    private class PollTask extends AsyncTask<Void, Void, Void> {

        @Override
        protected Void doInBackground(Void... params) {
            showNotification();
            return null;
        }

        @Override
        protected void onPostExecute(Void result) {
            stopSelf();
        }
    }

    private void handleIntent(Intent intent) {
        // obtain the wake lock
        PowerManager pm = (PowerManager) getSystemService(POWER_SERVICE);
        mWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
                "NotificationsService");
        mWakeLock.acquire();
        // check the global background data setting
        ConnectivityManager cm = (ConnectivityManager) getSystemService(CONNECTIVITY_SERVICE);
        if (!cm.getBackgroundDataSetting()) {
            stopSelf();
            return;
        }
        new PollTask().execute();
    }
}

NotificationsActivityで、Extrasを取得し、を表示しています。これらのエクストラにはタイムスタンプがあり、1分に1回(60000ミリ秒)showNotifications()メソッドを呼び出しています。

問題:

  1. Service Extrasから取得するNotificationsActivityに表示しているタイムスタンプは、最初の通知のタイムスタンプです。

たとえば、最初の通知が午前10:10:10の場合、アクティビティでは常に午前10:10:10になっています。ただし、[通知]パネルには、毎分作成されるすべての通知について、午前10時15分10秒のように更新されたものが表示されます。

  1. 毎分通知を設定している場合、通知は個別であると思います。代わりに、以前の通知を置き換えるだけです。または、myAppからの10件の通知のようになります。

これらを取得する方法は?

主に、タイムスタンプが更新されない理由を知りたいですか?

4

1 に答える 1

1

NotificationsActivityに表示しているタイムスタンプ。これは、ServiceExtrasから取得します。最初の通知のタイムスタンプです。

アクティビティがまだ実行中の場合は、のonNewIntent()代わりにで呼び出す必要がonCreate()あり、Intent配信先にonNewIntent()は適切な追加機能が必要です。getIntent()常にIntent、最初にアクティビティを作成するために使用されたものを返します。

毎分通知を設定している場合、通知は個別であると思います。

ユーザーは、画面を通知で溢れさせる開発者は完全に無謀だと考えています。

代わりに、以前の通知を置き換えるだけです。

それはあなたがへのあなたの呼び出しでそれをするようにあなたが言っていることですnotify()

于 2012-10-11T11:14:24.493 に答える