可以使用Service进行队列通知吗?

时间:2017-05-19 05:20:28

标签: android service

我正在使用服务进行队列通知。 这是我的代码。

   serviceIntent = new Intent(context, MyService.class);
                serviceIntent.setAction(MyService.BACKGROUND);
                context.startService(serviceIntent);


   if (BACKGROUND.equals(intent.getAction())) {
        Toast.makeText(this, "Background", Toast.LENGTH_SHORT).show();
        startForeground(NOTI_ID++, getNoti());
    }
       Toast.makeText(this, "onStartCommand", Toast.LENGTH_SHORT).show();
        return START_STICKY;

0 个答案:

没有答案