728x90
반응형
# 패딩(padding) 및 마진(margin)
* 마진(Margin) : 위젯(여기서는 TextView)이 부모 레이아웃의 테두리로부터의 여백을 말한다
* 패딩(Padding) : 위젯(여기서는 TextView) 테두리로부터 위젯 안에의 내용(여기서는 text)사이의 여백을 말한다
<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_width="100dp"
android:layout_height="100dp"
android:layout_marginLeft="50dp"
android:layout_marginTop="20dp"
android:layout_marginRight="100dp"
android:layout_marginBottom="200dp"
android:background="#00bcd4"
android:text="안녕하세요" />
<TextView
android:layout_width="100dp"
android:layout_height="100dp"
android:background="#ff5722"
android:padding="20dp"
android:text="반갑습니다." />
<TextView
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_margin="200dp"
android:layout_marginLeft="200dp"
android:layout_marginTop="200dp"
android:layout_marginRight="200dp"
android:layout_marginBottom="200dp"
android:background="#ffc107" />
</LinearLayout>
728x90
반응형
'🎨 Programming > Android(Kotlin)' 카테고리의 다른 글
[Kotlin] 16. 안드로이드 Activity 기초 / 생명주기 - 1 (0) | 2020.12.03 |
---|---|
[Kotlin] 15. 안드로이드 ScrollView / ImageView (0) | 2020.12.03 |
[Kotlin] 13. 안드로이드 레이아웃(layout) 종류 (0) | 2020.12.03 |
[Kotlin] 12. 안드로이드 PX, DP, DPI의 개념 (0) | 2020.12.02 |
[Kotlin] 11. 상속(inherit) 및 인터페이스(interface) (0) | 2020.12.01 |