fangwenjie

Results 1 comments of fangwenjie

魅族应该是定制了Flyme的通知,如果要启用的话,有用的没有的都要设置了才行; ``` final Notification.Builder builder = new Notification.Builder(context); builder.setLargeIcon(mIcon) .setSmallIcon(R.drawable.ic_launcher) .setTicker("CirlceProgressBarNotification") .setContentTitle("ContentTitle") .setContentInfo("ContentInfo") .setContentText("ContentText") .setWhen(0) .setOngoing(true); ``` 这些都得加上。。。。