본문 바로가기
모바일/Android View & Layout

[Android] padding & margin

by drCode 2021. 4. 19.
728x90
반응형

 

<?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="vertical">

    <TextView
        android:layout_marginTop="20dp"
        android:layout_marginLeft="50dp"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_marginRight="100dp"
        android:layout_marginBottom="200dp"
        android:background="#00BCD4"
        android:text="안녕하세요"
        />

    <TextView
        android:layout_marginTop="20dp"
        android:layout_marginLeft="50dp"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_marginRight="100dp"
        android:layout_marginBottom="200dp"
        android:background="#FF5722"
        android:text="안녕하세요"
        />

    <TextView
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_margin="20dp"

        android:background="#FFEB3B"
        />

</LinearLayout>
728x90
반응형

댓글