Notificationnotification=newNotification(R.drawable.a10,"Notification comes", System.currentTimeMillis()); IntentnotificationIntent=newIntent(this,MainActivity.class); PendingIntentpendingIntent= PendingIntent.getActivity(this,0,notificationIntent,0); notification.setLatestEventInfo(this,"this is title","this is content",pendingIntent); startForeground(1,notification); Log.d("MyService","onCreate executed");
更新为:
1 2 3 4 5 6 7
NotificationCompat.Builderbuilder=newNotificationCompat.Builder(this); builder.setSmallIcon(R.mipmap.ic_launcher); builder.setTicker("just watch me"); builder.setWhen(System.currentTimeMillis()); builder.setContentTitle("look at that"); builder.setContentText("you can do it!"); startForeground(1,builder.build());