11

我第一次制作Android应用程序,我遇到了这个问题。当用户 A 向另一个用户 B 发送好友请求时,用户 B 会收到通知。我希望当用户 B 单击通知时将其重定向到用户 A 个人资料。

主要活动(应用程序中的主页)根据用户的来源打开不同的片段。用户配置文件就是这样一个片段。

这就是我从主活动的演示者类发送通知的方式。

Intent notificationIntent = new Intent(activity.getApplicationContext(), MainActivity.class);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);

Bundle extras = new Bundle();
extras.putString("name" ,this.friendRequestFromUserName.toString());
extras.putString("email", this.friendRequestFromUserEmail);
extras.putString("notification", "notificationFriendRequest");

notificationIntent.putExtras(extras);

System.out.println("PUTTING EXTRA");
System.out.println(notificationIntent.getExtras().toString());
// output here is:
//Bundle[{name=The Lion King, email=mufasa@lionking.com, notification=notificationFriendRequest}]

NotificationCompat.Builder builder = new NotificationCompat.Builder(activity)
    .setSmallIcon(R.drawable.ic_notification)
    .setContentTitle("New friend!")
    .setContentText(this.friendRequestFromUserName + " wants to be friends.")
    .setAutoCancel(true)
    .setOnlyAlertOnce(true)
    .setOngoing(false)
    .setContentIntent(PendingIntent.getActivity(activity.getApplicationContext(), 0, notificationIntent, 0));

builder.setOngoing(false);
builder.setAutoCancel(true);

Notification not = builder.build();
not.flags = Notification.FLAG_AUTO_CANCEL;
NotificationManager manager = (NotificationManager)this.activity.getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);
        manager.notify(123, not);

然而,在用户点击通知的主要活动中,只有部分 Bundle 是“到达”。以下是我尝试获得额外内容的方法:

    extraName = intent.getStringExtra("name");
    extraMail = intent.getStringExtra("email");
    extra = intent.getStringExtra("notification");

    System.out.println(intent.getExtras().toString());
    //Bundle[{notification=notificationFriendRequest}]

我还尝试将数组作为额外的结果相同。由于我的部分额外内容到了,但其他部分没有,而且我找不到类似的主题和问题,我决定询问是否有人可以提供帮助或解释为什么会发生这种情况或如何发生这种情况。谢谢。

4

3 回答 3

19

因此,正如 pskink 建议的那样,我添加了唯一的 requestCode 和 PendingIntent.FLAG_UPDATE_CURRENT 标志并解决了它。

.setContentIntent(PendingIntent.getActivity(activity.getApplicationContext(), Math.abs(generator.nextInt()), notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT));

由于我看不到如何将建议标记为答案,因为这是我在这里的第一个问题,所以我自己回答。再次感谢您,pskink!

于 2016-01-15T13:07:21.993 回答
1

你以错误的方式获得价值。当您在 Intent 中将所有内容作为捆绑传递时,首先您必须先从这样的意图中获取 Bundle 对象

Bundle extras = getIntent().getExtras(); 然后从 bundle 对象中获取其他字符串

于 2016-01-15T11:15:18.093 回答
1

尝试获取捆绑对象,然后获取这样的值,我希望这可以帮助你。

@Override
protected void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);

     try{
          Bundle data= this.getIntent().getExtras();
          extraName = data.getString("name");
          extraMail = data.getString("email");
          extra = data.getString("notification");
     }catch(Exception e){
          e.printStackTrace();
     }
}
于 2016-01-15T11:29:48.193 回答