3

我正在开发一个安卓应用程序。我可以通过解析 REST API 将推送通知发送到应用程序。但我需要在 REST api 中发送操作字段(意图)以打开正确的屏幕。目前它只是打开主屏幕。

现在它只是打开主页(主屏幕)。我将如何通过解析 REST API 指定打开品牌活动类(test.mm.brand)的意图

我的android清单文件如下。

<activity
    android:name=".MofActivity"
    android:label="@string/app_name" >
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>

<activity android:name="test.mm.brand" />
<activity android:name="test.mm.CustomizedListView" />
<activity android:name="test.mm.HallofFame" />
<activity android:name="test.mm.VideoList" />

休息请求

curl  -X  POST -H "X-Parse-Application-Id: ntItEUY1LZ949R9zfTWDuZORE6dnjICxOni9L9nU" -H "X-Parse-REST-API-Key: dwYZ2DeKutwtswDgWTYkboIw6hRplwSNDR20GiMt" -H "Content-Type: application/json"  -d '{ "where": { "deviceType": "android" }, "data": { "alert": "Your suitcase has been filled with tiny robots!", "action": "test.mm.brand", "title" : "dddd" } }' https://api.parse.com/1/push
4

1 回答 1

4

您需要创建一个接收器来获取此处给出的通知Parse Android Notification - 响应有效负载

将此添加到您的清单中

<receiver android:name="test.mm.MyCustomReceiver">
<intent-filter>
  <action android:name="test.mm.brand" />
</intent-filter>
</receiver>

创建这个类

public class MyCustomReceiver extends BroadcastReceiver {
private static final String TAG = "MyCustomReceiver";

  @Override
  public void onReceive(Context context, Intent intent) {
    try {
      String action = intent.getAction();
      if(action.equalsIngnoreCase("test.mm.brand") {
        Intent intent = new Intent(context, test.mm.brand.class);
        i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        context.startActivity(i); 
      }

    }
  }
}
于 2013-05-22T12:47:29.357 回答