小编Usa*_*san的帖子

推送通知在 android studio 中不起作用

嗨,我需要添加推送通知以代表公司欢迎用户这里是我的代码,但它不起作用

 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);
Run Code Online (Sandbox Code Playgroud)

java android push-notification android-notifications android-studio

3
推荐指数
1
解决办法
2912
查看次数