很常用的功能,用户体验不错。
但通知太频繁很麻烦,大多数的软件都禁用了。
常用软件留着还是很有必要的。
1 Notification notification = new NotificationCompat.Builder(this) 2 .setContentTitle("这是自己人的程序") 3 .setContentText("我是大卫,哈哈") 4 .setWhen(System.currentTimeMillis()) 5 .setSmallIcon(R.mipmap.ic_launcher) 6 .setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher)) 7 .setContentIntent(pi) 8 //.setSound(Uri.fromFile(new File("/system/media/audio/ringtones/luna.ogg"))) 9 //.setLights(Color.GREEN,1000,1000) 10 .setDefaults(NotificationCompat.DEFAULT_ALL) 11 .build();