Android中Notification.Builder的使⽤⽅法3.0以上系统中Notification 的setLatestEventInfo已经不推荐使⽤了,所以⽤Notification.Builder改造了⼀下:
PendingIntent contentIntent = Activity(this, 0,
new Intent("com.android.XXX.XXX")
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK), 0);
Builder builder = new Notification.Builder(this);
builder.setContentIntent(contentIntent)
.setSmallIcon(R.drawable.XXX)
.setWhen(System.currentTimeMillis()).setAutoCancel(false)
.setContentTitle(statusContentTitle).setContentText(statusContentContext);安卓intent用法
startForeground(XXX, Notification());
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论