【发布时间】:2018-10-16 10:37:26
【问题描述】:
您好,我需要添加推送通知以代表公司欢迎用户 这是我的代码,但它不起作用
NotificationManager notif=(NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
Notification notify=new Notification.Builder
(getApplicationContext()).setContentTitle("BergEsapes").setContentText("Kindly Login Your Account").
setContentTitle("User Register Succesfully").setSmallIcon(R.drawable.appicon).build();
notify.flags |= Notification.FLAG_AUTO_CANCEL;
notif.notify(0, notify);
【问题讨论】:
-
请不要在您的问题中添加您的代码在 cmets 中简单编辑
标签: java android android-studio push-notification android-notifications