<?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">
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="위쪽"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true">
</Button>
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="좌측"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true">
</Button>
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="중앙"
android:layout_centerInParent="true">
</Button>
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="우측"
android:layout_alignParentRight="true"
android:layout_centerVertical="true">
</Button>
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="아래"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true">
</Button>
</RelativeLayout>
실행화면
'안드로이드 > 연습' 카테고리의 다른 글
[Android] 테이블레이아웃 계산기 (0) | 2021.08.18 |
---|---|
[Android] xml RelativeLayout 2 (0) | 2021.08.11 |
[Android] xml layout_weight (0) | 2021.08.11 |
[Android] 단순한 계산기 (0) | 2021.08.10 |
[Android] XML 텍스트 색깔 지정 및 위치 조정하기 (0) | 2021.08.10 |