Fix JSONResponse on listview
问题 I want to add row to listview from my JSON response. Here is the code from which I'm getting JSON and printing them in the cosole: HttpClient hClient = new DefaultHttpClient(); HttpGet hGet = new HttpGet( "APIHere"); ResponseHandler<String> rHandler = new BasicResponseHandler(); data = hClient.execute(hGet, rHandler); JSONObject rootObj = new JSONObject(data); JSONObject searchObj = rootObj.getJSONObject("searchdata"); JSONArray titlesObj = searchObj.getJSONArray("titles"); JSONArray descsObj