I want to take String data in ArrayList. I attempted to retrieve forecast data (which is in JSON format) from OpenWeatherMap API. "I stored data in JSONObject,then take it in string. Now I want to show data with help of ArrayList,But I am not able to retrive data in ArayList. I had debug code with LogCat and found that all the String have data but ArrayList is not taking data." Can anyone tell me where i am doing wrong.Below is my code of OnpostExecute method. Thanks for any help.
protected void onPostExecute(String file_url) {
String gradfix = city.replace("%20", " ");
grad.setText(gradfix);
pb.setVisibility(View.GONE);
grad.setVisibility(View.VISIBLE);
try {
// Getting Array of Contacts
JSONObject json2 = new JSONObject(file_url);
JSONArray forecast = null;
forecast = json2.getJSONArray("list");
// looping through All Contacts
for(int i = 0; i < forecast.length(); i++){
JSONObject c = forecast.getJSONObject(i);
String dt = c.getString("dt");
String day = c.getString("day");
Log.e("day",day.toString());
String min = c.getString("min");
String max = c.getString("max");
String pressure = c.getString("pressure");
String humidity = c.getString("humidity");
JSONArray weather = c.getJSONArray("weather");
for(int index = 0; index < weather.length(); index++){
JSONObject weatherObject = weather.getJSONObject(index);
String clouds = weatherObject.getString("clouds");
String speed = weatherObject.getString("speed");
String deg = weatherObject.getString("deg");
}
}
final ArrayList<HashMap<String, Object>> list = new ArrayList<HashMap<String, Object>>();
for (HashMap<String, Object> map : list) {
//HashMap<String, Object> map = new HashMap<String, Object>();
//Log.e("list",pressure.toString());
double srednja = Double.parseDouble(map.get("day").toString());
double ssrednja2 = (double) Math.floor(srednja);
srednja1.setText(format.format(ssrednja2)+"°F");
tlak.setText(map.get("pressure").toString()+" hpa");
tlak.setVisibility(View.VISIBLE);
vlaznost.setText(map.get("humidity").toString()+" %");
vlaznost.setVisibility(View.VISIBLE);
vjetar.setText(map.get("speed").toString()+" m/s");
vjetar.setVisibility(View.VISIBLE);
String imgrestring = map.get("icon").toString();
Bitmap slika = BitmapFactory.decodeResource(getResources(), getResources().getIdentifier("img"+imgrestring, "drawable", getPackageName()));
img_mid.setImageBitmap(slika);
Float stupnjevi = Float.valueOf(map.get("deg").toString());
Log.d("jea", String.valueOf(stupnjevi));
Bitmap bmpOriginal = BitmapFactory.decodeResource(context.getResources(), R.drawable.wind);
Bitmap bmResult = Bitmap.createBitmap(bmpOriginal.getWidth(), bmpOriginal.getHeight(), Bitmap.Config.ARGB_8888);
Canvas tempCanvas = new Canvas(bmResult);
tempCanvas.rotate(stupnjevi, bmpOriginal.getWidth()/2, bmpOriginal.getHeight()/2);
tempCanvas.drawBitmap(bmpOriginal, 0, 0, null);
BitmapDrawable mDrawable = new BitmapDrawable(getResources(),bmResult);
vjetar.setCompoundDrawablesWithIntrinsicBounds( null, null, mDrawable, null);
stanje.setText(map.get("main").toString());
}
} catch (JSONException e) {
e.printStackTrace();
}
}
for (HashMap<String, Object> map : list) {you are iterating on a list that you just created. it is empty. what else did you expect?ArrayList<HashMap<String, Object>> listis empty, only initialized, therefore you will never enter in for loop.