Android Notification onClick活动打开失败

时间:2016-12-19 11:54:14

标签: android sms android-notifications

我正在开发可以执行发送假短信和接收假短信的应用。它更好如果我可以使用内置的短信通知,但我不知道如何。所以我使用下面的代码来生成通知,当我点击Notification时没有任何反应。请问有人可以解决我的问题吗?当我点击该通知时,我需要打开消息收件箱。任何帮助将不胜感激!

Uri sms_uri = Uri.parse("smsto:+92xxxxxxxx");
Intent sms_intent = new Intent(Intent.ACTION_SENDTO, sms_uri);
sms_intent.putExtra("sms_body", "Good Morning ! how r U ?");
PendingIntent contentIntent = PendingIntent.getService(context, 0, sms_intent, 0);
Resources res = context.getResources();

Notification noti = new Notification.Builder(context)
        .setContentTitle(res.getString(R.string.app_name))
        //.setContentText(res.getString(R.string.cancelText))
        .setSmallIcon(android.R.drawable.ic_dialog_email)
        .setTicker(res.getString(R.string.app_name))
        //  .setAutoCancel(true)
        .setWhen(System.currentTimeMillis())
        .setContentIntent(contentIntent)
        .build();

NotificationManager notificationManager = (NotificationManager) getActivity().getSystemService(NOTIFICATION_SERVICE);
noti.flags |= Notification.FLAG_AUTO_CANCEL;
notificationManager.notify(0, noti);

1 个答案:

答案 0 :(得分:2)

使用

 PendingIntent.getActivity(context, 0 , sms_intent, 0);

这可能会有所帮助!!!