0

3秒ごとに通知を作成するサービスをアプリ内に作成したいと思います。このコードを作成しましたが、アプリを起動したときに1回だけ機能します。3秒ごとに通知を受け取りたい!! アプリを閉じても通知が届きます!! (このため私はサービスを作成します)私を助けてください。

public class notifService extends Service {
ScheduledExecutorService scheduler = Executors.newSingleThreadScheduledExecutor();
private static final int HELLO_ID = 1;

    @Override
        public IBinder onBind(Intent arg0) {
        return null;
    }

    @Override
    public void onStart(Intent intent, int startId) {
        super.onStart(intent, startId);
        final Intent intent1 = new Intent(this, notifService.class);

        scheduler.schedule(new Runnable() {
            @Override
            public void run() {
                // Look up the notification manager server
                NotificationManager nm = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);

                // Create your notification
                int icon = R.drawable.fifi;
                CharSequence tickerText = "Hello";
                long when = System.currentTimeMillis();
                Notification notification = new Notification(icon, tickerText,when);
                Context context = getApplicationContext();
                CharSequence contentTitle = "My notification";
                CharSequence contentText = "Hello World!";
                PendingIntent pIntent = PendingIntent.getActivity(notifService.this, 0, intent1, 0);
                notification.setLatestEventInfo(context, contentTitle,contentText, pIntent);
                // Send the notification
                nm.notify(HELLO_ID, notification);
            }
        }, 3, SECONDS);
    }

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

1 に答える 1

2

使用しscheduleているメソッドは、ワンショットアクションを実行します。

あなたは使用する必要がありますScheduledExecutorService.scheduleWithFixedDelay

指定された初期遅延の後に最初に有効になり、その後、ある実行の終了から次の実行の開始までの間に指定された遅延が発生する定期的なアクションを作成して実行します。

これを試して:

scheduler.scheduleWithFixedDelay(new Runnable() {
        @Override
        public void run() {
          // your code
        }
    }, 3, 3, SECONDS);

3このメソッドは4つの引数を想定しているため、メソッド呼び出しの余分な部分に注意してください。

于 2013-03-16T12:58:28.050 に答える