<?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>
'개발일지 > Android' 카테고리의 다른 글
안드로이드(개념), Pixel / DP / 뷰 컴포넌트(View Component) (0) | 2022.11.01 |
---|---|
안드로이드 ScrollView 사용법 (0) | 2022.11.01 |
안드로이드 Frame Layout 사용하기 (0) | 2022.11.01 |
안드로이드 배치관리 RelativeLayout 사용법 (0) | 2022.11.01 |
안드로이드 LinearLayout 사용법 1 (0) | 2022.11.01 |
댓글