решена!Чтобы упомянуть, мое приложение состоит из 3 классов: Utils, MainActivity и Event.
Прежде всего, в Utils.java анализ вашего значка JSON:
/**URL for the icons location at OpenWeatherMap*/
public static final String IMG_URL = "https://openweathermap.org/img/w/";
//Retrieve icon code from website
String iconName = JSONWeather.getString("icon");
Во-вторых, в Event.java add:
вверху
public final String iconName;
и класс
public Event(.....String eventIconName)
{ .......
iconName=eventIconName;
}
В-третьих, в MainActivity.java добавить вид изображения и ссылку на Пикассо :
//Convert icon code from the OpenWeatherMap website into the image and insert into the ImageView. Path consists of URL declared in Utils.java, and @param iconName, declared in Event.java.
// JSON parser method used in Utils.java class retrieves icon code from OpenWeatherMap (iconName), .png extension is added.
ImageView iconView = findViewById(R.id.condIcon);
Picasso.with(this).load(IMG_URL + weather.iconName +".png").into(iconView);
Честно говоря, я потратил 2 дня, чтобы понять это.Надеюсь, это будет полезно для других людей.