Signifie que la chaîne JSON de réponse contient JSONArray
de JSONObject
. donc convertissez JSON String en JSONArray puis itérez pour en obtenir tous les JSONObjects comme :
JSONArray array=new JSONArray(json);
JSONObject jsonObject = array.getJSONObject(array.length()-1);
String MiNtimeIn = jsonObject.optString(Configs.TAG_IN);
String MaXtimeOut=jsonObject.optString(Configs.TAG_OUT);
Log.e("A",MiNtimeIn);
Log.e("S", MaXtimeOut);