写了一个Android notification本地通知插件,在4.0版本的小米出现了问题。
使用了Notification.Builder的方法。但是小米这个会报标题上的错误。
于是改为旧的方法做兼容。
Notification notify = new Notification(R.drawable.icon,args.getString(0),System.currentTimeMillis());
notify.setLatestEventInfo(cx, args.getString(0), args.getString(1),
pIntent);
或者也可以用
Notification推荐使用NotificationCompate.Builder,它位于android.support.v4.app.NotificationCompat.Builder,是一个Android向下版本的兼容包,而在Android3.0之后,一般推荐使用Notification.Builder构建。
时间: 2024-11-05 20:34:58