Android studio 실습


Android studio 실습

ACtivity_main<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:layout_height="match_parent" android:orientation="vertical" tools:context=".MainActivity"> <EditText android:id="@+id/edittext" // 뷰의 이름 지정 android:layout_width="match_parent" //가로폭 android:layout_height="wrap_content" //세로폭 android:hint="Input" // 텍스트안에 아무 입력값이 없을경우 보여지는 텍스트 /> <TextView android:textSize="20dp" androi..........



원문링크 : Android studio 실습