问题 通过单击Parse的推送通知打开活动


我希望从Parse接收推送通知并打开List活动并在开始活动之前使用intent.putextra(“dataFromParse”)。 我能够接收推送,但只使用以下方法打开MainActivity:

PushService.setDefaultPushCallback(this, MainActivity.class);
ParseInstallation.getCurrentInstallation().saveInBackground();

我希望将此作为默认值,但也应该能够启动List活动。 我也尝试过使用客户接收器,但是我只能在接收推送时直接打开活动,而不是点击它。

manifest.xml文件:

<receiver android:name="com.example.Push android:exported="false">
    <intent-filter>
        <action android:name="com.example.UPDATE_STATUS" />
    </intent-filter>
</receiver>

Push.java:

public class Push extends BroadcastReceiver {

  @Override
  public void onReceive(Context context, Intent intent) {
      //Start activity
     }
}

我不确定的是我应该如何在后台捕获推送并说它应该在用户单击通知时使用特定的intent.putExtra(“dataFromParse”)打开List活动。我应该在哪里编码以及如何编码?在MainActivity中,在List活动中,还是在客户接收器上执行其他操作?


3369
2018-04-03 15:41


起源

面临同样的问题,任何解决方案吗? - arvindwill


答案:


解决了它,将默认活动作为MainActivity,但检查意图,如果“com.parse.Data”中有什么内容,我将启动一个新意图。

Intent intent = getIntent();
Bundle extras = intent.getExtras();
String jsonData = extras.getString("com.parse.Data");
JSONObject json = new JSONObject(jsonData);
String pushStore = json.getString("data");
if(pushStore!=null) {
    Intent pushIntent = new Intent();
    pushIntent.setClassName(MainActivity.this, "package.name.List");
    pushIntent.putExtra("store", pushStore);
    startActivity(pushIntent);
}           

然后用json发送推送:{“alert”:“Test”,“data”:“store1”}

@arvindwill希望这会有所帮助。


13
2018-04-29 07:12



真棒。我唯一建议的是检查是否 extras 一片空白。否则,这非常有效。谢谢! - Charx
@stianboe你可以告诉我是否传递user_id指针向特定用户发送通知然后它不工作,而它适用于所有类型android和channel =“channel”的用户如何发送给特定用户 - Erum
我需要在MainActivity中添加此代码吗?在onCreate里面? - Tasfiqul Ghani
你在哪里添加了这段代码片段。请发布自定义广播接收器的完整源代码。我想在通知点击上打开一个片段。现在我只能打开MainActivity。谢谢! - Deepak S. Gavkar


试试这个......它完美无缺......

try {
        Intent intent = getIntent();
        Bundle extras = intent.getExtras();
        if (extras != null) {
            String jsonData = extras.getString("com.parse.Data");
            JSONObject json;
            json = new JSONObject(jsonData);
            String pushStore = json.getString("alert");
            data.setText(pushStore);
        }
    } catch (JSONException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

2
2018-01-26 16:07





根据官方的Parse文档 https://www.parse.com/docs/android/guide#push-notifications-customizing-notifications :

如果你的推送没有“uri”参数,onPushOpen将调用你的应用程序的启动器活动。

因此,当前接受的答案仅考虑到您的推送没有“uri”并打开您的MainActivity的情况。如果要打开具体的Activity,可以定义一个 intent-filter 对于该活动,并在您的推送上发送该intent-filter uri。


1
2017-11-19 08:21





您应该覆盖接收器类中的onPushOpen(...)方法:

import com.parse.ParsePushBroadcastReceiver;

public class PushIntentReceiver extends ParsePushBroadcastReceiver {

    @Override
    protected void onPushOpen(Context context, Intent intent) {
        JSONObject pushData = null;

        try {
            pushData = new JSONObject(intent.getStringExtra(KEY_PUSH_DATA));            
            Intent pushIntent = new Intent(context, YourActivity.class);        
            pushIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            pushIntent.putExtra("store", pushData.getString("data"));
            context.startActivity(pushIntent);

        } catch (JSONException e) {
            e.printStackTrace();
        }
    }
}

0
2017-12-17 11:53