doushouxie7064 2017-02-04 05:54
浏览 135

使用json / php的Android Studio简单通知

I have built a simple android app for internal use only. This app, sends data (GPS coordinates) every few seconds which saves to mysql via a simple PHP script. I do need the users Android device to display a preset notification (which will be displayed if the phone is in standby more, viewing another app etc..) if there is a certain response from json.

Most of the tutorials i have seen, advise that this is done using GCM. I would have thought, a 'self pushed' notification should be easier than this.

e.g if json replies with "notify: 1" then androids notification will state 'There is a job waiting'.

Is there an easy way to do this? if so, please guide me to an easy resolution.

new HttpRequestTask(
                new HttpRequest("https://www.autoflora.net/driver/gps.php?Driver_ID=" + driver_id + "&latlong=" +
                        location.getLatitude() + "*" + location.getLongitude(), HttpRequest.POST, "{ \"some\": \"data\" }"),
                new HttpRequest.Handler() {
                    @Override
                    public void response(HttpResponse response) {
                        if (response.code == 200) {
                            Log.d(this.getClass().toString(), "Request successful!");
                        } else {
                            Log.e(this.getClass().toString(), "Request unsuccessful: " + response);
                        }
                    }
                }).execute();
  • 写回答

1条回答

  • dtudj42064 2017-02-04 07:47
    关注

    Once you get the response body from httpresponse. Create JSON object from that, for example

    ...
    JSON response = new JSON(responseBody); //responseBody is what you received from server
    
    if(response.has("notify") && (response.getInt("notify") == 1))
    {
      NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(context);
      notificationBuilder.setContentTitle(title); //Set notification title
      notificationBuilder.setContentText(message); // set notification text
    
      NotificationManager notificationManager =
                (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    
      notificationManager.notify(0 /* ID of notification */, 
      notificationBuilder.build());
    
    }
    ...
    

    Hope this helps

    评论

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog