본문 바로가기
Front-end/Android (안드로이드 앱 개발)

Android studio : View - RelativeLayout

by javapp 자바앱 2020. 1. 7.
728x90

<TextView
android:id="@+id/gijun"                                  기준뷰 정하고
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerInParent="true"
android:background="@color/colorPrimaryDark"
/>
<TextView
android:layout_toRightOf="@+id/gijun"                //toLeftOf , 오른쪽끝에 맞춰
android:layout_width="100dp"
android:layout_height="100dp"
android:background="@color/colorAccent"
/>

<TextView
android:layout_below="@+id/gijun"                      //toAboveOf
android:layout_width="100dp"
android:layout_height="100dp"
android:background="@color/colorAccent"
/>

댓글