我正在使用服务进行队列通知。 这是我的代码。
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;