ListView
-
[안드로이드] 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()..
-
[안드로이드] ListView 이벤트처리2 -리스트추가,수정,삭제Android/공부 2020. 5. 26. 16:43
Listview 이벤트 처리 - 리스트 추가, 수정, 삭제 구현 1. xml 1. activity_main.xml 레이아웃에 노출시킬 리스트뷰 1개와 리스트를 조작할 버튼을 추가한다. 2. java 1. MainActivity.java public class MainActivity extends AppCompatActivity { ListView listView; Button btn_add, btn_modify, btn_delete; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); listView = fin..