728x90
반응형
android:gravity="center|right" << 중심의 오른쪽으로 배치
android:layout_weight="1" << 배치 비율
android:weightSum="10" << 총 배치비율량
<?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:gravity="center"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="가운데"
android:textSize="20dp" />
<TextView
android:layout_width="200dp"
android:layout_height="200dp"
android:layout_gravity=""
android:gravity="right|center"
android:text="Gravity"
/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#43B53F"
android:text="100"
android:textSize="20dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#3F51B5"
android:text="100"
android:textSize="20dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#FFC107"
android:text="100"
android:textSize="20dp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#43B53F"
android:text="100"
android:textSize="20dp" />
<TextView
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#3F51B5"
android:text="200"
android:textSize="20dp" />
<TextView
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#FFC107"
android:text="300"
android:textSize="20dp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="300dp"
android:weightSum="10"
android:orientation="vertical">
<TextView
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:background="#43B53F"
android:text="100"
android:textSize="20dp" />
<TextView
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:background="#3F51B5"
android:text="200"
android:textSize="20dp" />
<TextView
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:background="#FFC107"
android:text="300"
android:textSize="20dp" />
</LinearLayout>
</LinearLayout>
728x90
반응형
'모바일 > Android View & Layout' 카테고리의 다른 글
[Android] RelativeLayout 실습 (0) | 2021.04.18 |
---|---|
[Android] RelativeLayout (Component 기준) (0) | 2021.04.18 |
[Android] RelativeLayout (부모 기준) (0) | 2021.04.18 |
[Android] LinearLayout 예제 (0) | 2021.04.16 |
[Android] Linear Layout & View Component (0) | 2021.04.14 |
댓글