为了账号安全,请及时绑定邮箱和手机立即绑定

通知栏点击OPPO Find7上不起作用,在模拟器中可以跳转界面,Builder在2.3系统上找不到类

private void sendNotification(){

    Intent intent = new Intent(getApplicationContext(),

    AlarmlistActivity.class);

    PendingIntent pendIntent = PendingIntent.getActivity(

    getApplicationContext(), 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);

    Notification mNotification = getMessageNotification(msg.getTitle(),msg.getContext(),pendIntent);

    messageNotificatioManager.notify(messageNotificationId, mNotification);

}


@SuppressLint("NewApi")

private Notification getMessageNotification(String title,String content,PendingIntent intent) {

     Notification messageNotification = new         Notification(R.drawable.androidicon,title,System.currentTimeMillis());

     messageNotification.flags |= Notification.FLAG_AUTO_CANCEL;

     messageNotification.flags |= Notification.FLAG_ONGOING_EVENT;

     messageNotification.defaults |= Notification.DEFAULT_ALL;

     messageNotification.setLatestEventInfo(getApplicationContext(), title, content, intent);

     return messageNotification;

}


正在回答

举报

0/150
提交
取消
Android攻城狮的第二门课(第2季)
  • 参与学习       62396    人
  • 解答问题       207    个

本课程讲带你熟悉Android开发中常用的调试方式,菜单、调试程序

进入课程

通知栏点击OPPO Find7上不起作用,在模拟器中可以跳转界面,Builder在2.3系统上找不到类

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信