[Android][Java] 간단한
안녕하세요. 오늘 우리는 매우 쉬운 방법으로 Android에서 할 일 목록을 만드는 방법을 배울 것입니다! 먼저 목록 보기에 포함할 항목에 대한 레이아웃을 만듭니다. todolist_item.xml <?xml version=”1.0″ encoding=”utf-8″?> <TextView xmlns:android=”http://schemas.android.com/apk/res/android” android:layout_width=”match_parent” android:layout_height=”wrap_content” android:background=”@color/white” android:padding=”20dp” android:text=”textView” android:textSize=”20dp” android:textStyle=”bold”> </TextView> 다음으로 활동 화면 레이아웃을 만듭니다. todolist.xml <?xml version=”1.0″ encoding=”utf-8″?> <RelativeLayout 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:layout_height=”match_parent” tools:context=”.MainActivity”> <LinearLayout android:id=”@+id/bottom_section” android:layout_width=”match_parent” … Read more