我正在尝试将我发送到短信收件箱文件夹的通知之间进行链接,但我什么也没做:
notificationIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("content://sms/inbox"));
contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
我哪里错了?