Firebase云消息传递(FCM) - 当用户使用附加内容

时间:2016-06-01 10:07:02

标签: android android-notifications firebase-cloud-messaging firebase-notifications

我尝试在用户点击通知时尝试打开特定活动,当应用在后台时,会有一些额外的参数。我正在使用click_action并且工作正常,应用程序会打开所需的活动。

现在我需要服务器将一个额外的参数id传递给此Activity,以便我可以提供与通知相关的所需详细信息。就像电子邮件应用程序一样,当我们点击通知时,会打开该特定电子邮件的详细信息。

我该怎么做?

2 个答案:

答案 0 :(得分:38)

好的,我找到了解决方案。

这是我从服务器发送到应用程序的json

{
  "registration_ids": [
    "XXX",
    ...
  ],
  "data": {
    "id_offer": "41"
  },
  "notification": {
    "title": "This is the Title",
    "text": "Hello I'm a notification",
    "icon": "ic_push",
    "click_action": "ACTIVITY_XPTO"
  }
}

在AndroidManifest.xml

<activity
    android:name=".ActivityXPTO"
    android:screenOrientation="sensor"
    android:windowSoftInputMode="stateHidden">
    <intent-filter>
        <action android:name="ACTIVITY_XPTO" />        
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>

当应用关闭或在后台并且用户点击通知时,它会打开我的ActivityXPTO,以检索我只需要执行的id_offer

public class ActivityXPTO extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        ...

        String idOffer = "";

        Intent startingIntent = getIntent();
        if (startingIntent != null) {
            idOffer = startingIntent.getStringExtra("id_offer"); // Retrieve the id
        }

        getOfferDetails(idOffer);
    }

    ...
}

就是这样......

答案 1 :(得分:0)

向用于启动Activity的Intent添加附加信息,并在方法onCreate中的activity中使用getIntent()。getExtras()来使用它们。例如:

开始活动:

Intent intent = new Intent(context, TargetActivity.class);
Bundle bundle = new Bundle();
bundle.putString("extraName", "extraValue"); 
intent.putExtras(bundle);
startActivity(intent); 

活动

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

    Bundle bundle = getIntent().getExtras();
    String value = bundle.getString("extraName");
    ....
}