Searched refs:jsonArray (Results 1 – 2 of 2) sorted by relevance
364 private List<Integer> jsonArrayToIntegerList(JSONArray jsonArray) throws JSONException { in jsonArrayToIntegerList() argument365 if (jsonArray == null) { in jsonArrayToIntegerList()369 for (int i = 0; i < jsonArray.length(); i++) { in jsonArrayToIntegerList()370 intArray.add(jsonArray.getInt(i)); in jsonArrayToIntegerList()
192 JSONArray jsonArray = new JSONArray(roomListJson); in onResume() local193 for (int i = 0; i < jsonArray.length(); i++) { in onResume()194 roomList.add(jsonArray.get(i).toString()); in onResume()