使用此代码,我可以向我自己的设备发送通知。
Intent intent = new Intent(getApplicationContext(), ContactDonor.class);
PendingIntent pi = PendingIntent.getActivity(getApplicationContext(), 0, intent, 0);
//display text
String body = "Please Click on this to accept!";
String title = bloodgroup+" Required";
Notification n = new Notification(R.drawable.ic_launcher, body , System.currentTimeMillis());
n.setLatestEventInfo(getApplicationContext(), title, body, pi);
n.defaults = Notification.DEFAULT_ALL;
nm.notify(uniqueID, n);
finish();
但是现在我有一个屏幕,其中显示了一个人的详细信息,例如: Name: ... email: ... ,并且有一个消息框和一个 Request Button ,单击该按钮,他应该会收到一条通知特定消息。这个特殊的事情怎么做?