728x90
728x90
1. 안드로이드 CRUD (입력, 수정, 추가, 삭제) 파일구성
2. 코드구성
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="새로고침"
android:id="@+id/btnRefresh"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="추가"
android:id="@+id/btn_add"/>
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="추가"
android:id="@+id/listView"/>
</LinearLayout>
MainActivity.java
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="새로고침"
android:id="@+id/btnRefresh"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="추가"
android:id="@+id/btn_add"/>
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="추가"
android:id="@+id/listView"/>
</LinearLayout>
728x90
728x90
'Java Friends > Android' 카테고리의 다른 글
안드로이드 방송수신자 (브로드캐스트 리시버) (0) | 2019.08.22 |
---|---|
안드로이드 서비스 정의와 생명주기 (2) | 2019.08.22 |
안드로이드 구구단 맞추기 (0) | 2019.08.20 |
안드로이드 어댑터뷰 개념과 예제 (0) | 2019.08.19 |
안드로이드 액티비티와 인텐트 (2) | 2019.08.16 |