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

Android studio : View - LinearLayout 응용

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

 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout                                                                   메인 레이아웃
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:orientation="vertical"                                               수직으로 배치 되도록
>

<LinearLayout                                                                   가장위쪽 레이아웃
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_weight="1"
android:orientation="horizontal"                                            수평으로 배치되도록
>
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/colorPrimaryDark"
android:layout_marginBottom="6dp"
/>
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/colorPrimaryDark"
android:layout_marginLeft="6dp"
android:layout_marginBottom="6dp"
/>
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/colorPrimaryDark"
android:layout_marginLeft="6dp"
android:layout_marginBottom="6dp"
/>
</LinearLayout>

<LinearLayout                                                                          중간 레이아웃
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1 "
android:orientation="horizontal"
>
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/colorPrimaryDark"
android:layout_marginBottom="6dp"
/>
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/colorPrimaryDark"
android:layout_marginLeft="6dp"
android:layout_marginBottom="6dp"
/>
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/colorPrimaryDark"
android:layout_marginLeft="6dp"
android:layout_marginBottom="6dp"
/>
</LinearLayout>

<LinearLayout                                                                              바닥 레이아웃
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1 "
android:orientation="horizontal"
>
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/colorPrimaryDark"

/>
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/colorPrimaryDark"
android:layout_marginLeft="6dp"
/>
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/colorPrimaryDark"
android:layout_marginLeft="6dp"
/>
</LinearLayout>

</LinearLayout>

댓글