从parse.com控制台接收推送时显示警告对话框而不是通知

时间:2014-10-13 15:44:03

标签: android parsing push-notification parse-platform

我正在尝试将推送通知添加到我的Android应用程序中。

首先,我从parse.com下载了示例项目,看看它是如何工作的。 当我发送消息或JSON时,我可以在通知栏中收到推送通知。 现在我想在通知栏中显示警告对话框而不是通知。 我搜索过,但即使在解析网站上也找不到解决方案。

请提供任何帮助,并提前致谢。

1 个答案:

答案 0 :(得分:0)

您好,如果您不在jsonObject中使用“title”和“alert”键,那么它将不会在通知栏中创建默认通知。我能够制作自定义通知而不是默认情况。

您可以在警报对话框代码中查看我的代码并更改自定义通知代码。请查看:

发送通知的代码:

String  otherChannelName = "channel" + user_id;
            // send push notfication
        String str_objid = PreferenceSetting.getObjId(mActivity);
        String str_uname = PreferenceSetting.getUName(mActivity);

            ParsePush push = new ParsePush();
            push.setChannel(otherChannelName);

            push.setMessage(message);

            JSONObject data = null;
            try {
                data = new JSONObject("{\"action\": \""
                        + NChatActivity.BUDDY_CHAT_PUSH_ACTION + "\"" + ",\"from\": \""
                        + str_objid + "\"" + ",\"to\": \"" + user_id
                        + "\"" + ",\"a\" : \"" + message + "\""
                        + ",\"t\" : \"" + type + "\"" + "}");

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

            push.setData(data);

            push.sendInBackground();

接收通知的代码:

@Override
public void onReceive(Context context, Intent intent) {
    try {


        Bundle extras = intent.getExtras();

        String message = extras != null ? extras.getString("com.parse.Data")
                : "";
        String channel = extras.getString("com.parse.Channel");


        JSONObject jObject = null;
        try {
            if (message != null && !message.equals("")) {
                jObject = new JSONObject(message);

                from = jObject.getString("from");
               messageText = jObject.getString("a");
               type  = jObject.getString("t");

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

         ActivityManager am =(ActivityManager)context.getSystemService(context.ACTIVITY_SERVICE);
          List < ActivityManager.RunningTaskInfo > taskInfo = am.getRunningTasks(1);
           ComponentName componentInfo = taskInfo.get(0).topActivity;

           if(componentInfo.getPackageName().equalsIgnoreCase("com.pappchat"))
         {
               if (type.equals("Papp App")) {
               if(taskInfo.get(0).topActivity.getClassName().equals("com.pappchat.NChatActivity"))
              {
                  LoadDataTwo.getfriendInfo(from,context);
                  Message msg = handler.obtainMessage();
                    Bundle b = new Bundle();
                    b.putString("message", messageText);
                    b.putString("from", from);

                    msg.setData(b);

                    if(handler.sendMessage(msg)){
                        Log.d(TAG, "send message successfully");
                    }else{
                        Log.d(TAG, "unable to send message.");
                    }
               }
               else
                  {
                       notify(context,intent,jObject);
                     }
                }

这里我在名为 notify(context,intent,jObject)的方法中进行了自定义通知您可以在此方法中创建警告对话框(当应用程序在后台时)。

查看此链接,可能对您有用:automatically-open-an-activity-without-user-action for notification