본문 바로가기

인문학도 개발일지/앱프로그래밍

[안드로이드] 화면 그리기, 레이아웃 - RelativeLayout, LinearLayout

참고 강의: https://youtu.be/jJxH3Nd1A1w?list=PLva6rQOdsvQXdSBN1r2mEt_tqES6NjKKj

 

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    >
    <TextView
        android:id="@+id/TextView_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="1"
        android:textSize="20sp"
        android:layout_centerInParent="true"
        android:layout_above="@id/TextView_2"
        >
    </TextView>
    <TextView
        android:id="@+id/TextView_2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="2"
        android:textSize="20sp"
        android:layout_centerInParent="true">
    </TextView>
    <TextView
        android:id="@+id/TextView_3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="3"
        android:textSize="20sp"
        android:layout_centerInParent="true"
        android:layout_below="@id/TextView_2">
    </TextView>
</RelativeLayout>

 

 

 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:weightSum="9"
    >
    <TextView
        android:id="@+id/TextView_1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="1"
        android:textSize="20sp"
        android:layout_weight="3">
    </TextView>
    <TextView
        android:id="@+id/TextView_2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="2"
        android:textSize="20sp"
        android:layout_weight="3">
    </TextView>
    <TextView
        android:id="@+id/TextView_3"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="3"
        android:textSize="20sp"
        android:layout_weight="3">
    </TextView>
</LinearLayout>