我正在尝试在Android中的通知中放置一个View对象(如TextView,Edittext,Button等)。我是这项任务的新手,我很困惑,所以这是我到目前为止的尝试。
所以我的通知显示如下:
Intent intent = new Intent(context, Receiver.class);
PendingIntent pIntent = PendingIntent.getActivity(context, 0, intent, 0);
Notification noti = new Notification.Builder(context)
.setContentTitle("Message From")
.setContentText("Subject").setSmallIcon(R.drawable.ic_launcher)
.setContentIntent(pIntent)
.addAction(R.drawable.ic_launcher, "", pIntent).build();
NotificationManager notificationManager =
(NotificationManager)
context.getSystemService(context.NOTIFICATION_SERVICE);
noti.flags |= Notification.FLAG_AUTO_CANCEL;
notificationManager.notify(0, noti);
我知道这可以在Jelly Bean和版本之后完成。我想知道是否有可能通过PendingIntent使用Intent插入一个View对象?
如果有人能指导我走向正确的方向