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 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘