[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