<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textsize= "30sp"
android:text="전화번호"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="000-0000-0000"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="right">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="입력"
android:textsize="20sp"
android:background="#00FF00"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="취소"
android:textSize="20sp"
android:background="#00FF00"/>
</LinearLayout>
</LinearLayout>
///////////////////////////////////////////////////////
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/text1"
android:text="전화번호"
android:textSize="30dp"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/text1"
android:id="@+id/edit1"
android:hint="000-0000-0000"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btn1"
android:textSize="20sp"
android:layout_toLeftOf="@+id/btn2"
android:text="입력"
android:layout_below="@id/edit1"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btn2"
android:textSize="20sp"
android:layout_alignParentRight="true"
android:layout_below="@id/edit1"
android:text="취소"
android:background="#00FF00"/>
</RelativeLayout>
'동방프로젝트' 카테고리의 다른 글
실습 7-3)사용자 정보 입력 앱 (2) | 2020.08.16 |
---|---|
5-5 그리드레이아웃의 xml 계산기 (0) | 2020.08.12 |
안드 5-3 (0) | 2020.08.11 |
안드 5-2 (0) | 2020.08.11 |
안드3일차 3 (0) | 2020.08.11 |