[TIP] Android Layout 나누기, 분할하기
Notepad96
·2022. 2. 14. 20:34
300x250
Android Layout 나누기, 분할하기 - 1:3으로 나누기
<?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:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="1/4"
android:textSize="22sp"
android:gravity="center"
android:background="#ff0"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="3"
android:text="3/4"
android:textSize="22sp"
android:gravity="center"
android:background="#0ff"
/>
</LinearLayout>
</LinearLayout>
android:layout_width를 wrap_content로 지정한 후 android:layout_weight를 사용하여 빈 공간을 나눠 갖음으로써 지정한 비율대로 레이아웃 분할이 가능하다.
300x250
'Android > TIP' 카테고리의 다른 글
[TIP] Andrid Button cannot lower case text - 소문자 입력하기 (0) | 2022.02.18 |
---|---|
[TIP]Android Layout dividing programmatically (0) | 2022.02.15 |
[TIP] Android Style Background 꾸미기 - 테두리, 모서리 둥글게 등 (0) | 2022.02.11 |
[TIP] Android Button Background color not working (0) | 2022.02.09 |
[TIP]Android 날짜 변경하기 - 내일, 어제, 한달 후 날짜 구하기 (0) | 2022.02.08 |