WEATHER
-
[안드로이드] CustomView 예제 2Android/공부 2020. 5. 26. 19:11
어댑터 리스트로 날씨 어플 만들기 1. xml 1. item_weather.xml 이미지뷰와 텍스트뷰로 구성된 레이아웃을 설정한다. 2. activity_main.xml ListView 를 추가해 item_weather.xml 파일과 연결한다. 2. java 1. Weather.java ( 모델 클래스) public class Weather { String city; String temp; String Weather; 클래스에 필요한 멤버 변수들을 선언한다. public Weather(String city, String temp, String weather) { this.city = city; this.temp = temp; Weather = weather; } public String getCity()..