Christmas Pikachu 안드로이드 Padding / Margin 적용하는 방법
개발일지/Android

안드로이드 Padding / Margin 적용하는 방법

ZI_CO 2022. 11. 1.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:background="#8BC34A"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <!-- 1번... 좌우왼오 패딩20씩  적용-->
    <TextView
        android:padding="20dp"
        android:background="@color/purple_200"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="1번"
        android:textSize="50dp"/>

    <!-- 2번.... 왼쪽 패딩40, 위쪽패딩 적용30 -->
    <TextView
        android:paddingStart="30dp"
        android:paddingTop="40dp"

        android:textSize="50dp"
        android:text="2번"
        android:background="@color/teal_200"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>


    <!-- 3번... 위50, 아래20 Padding,  왼20, 위20, 아래20 Margin 적용-->
    <TextView
        android:background="@color/teal_700"
        android:textSize="50dp"
        android:paddingTop="20dp"
        android:paddingBottom="20dp"
        android:layout_marginStart="20dp"
        android:layout_marginTop="20dp"
        android:layout_marginBottom="20dp"
        android:text="3번"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>


    <!-- 4번... 왼30, 위40 Padding, 위30, 왼40 Margin 적용-->
    <TextView
        android:background="@color/purple_200"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="50dp"
        android:text="4번"
        android:paddingStart="30dp"
        android:paddingTop="40dp"
        android:layout_marginTop="30dp"
        android:layout_marginStart="40dp"/>




</LinearLayout>

 

댓글