android 레이아웃 나누기
본문 바로가기

- Android

android 레이아웃 나누기

728x90
반응형

android 레이아웃 나누기

 

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">


<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical"
android:weightSum="9">


<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:background="@color/blue"
android:orientation="vertical">


</LinearLayout>


<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="5"
android:background="@color/pink"
android:orientation="vertical">


</LinearLayout>


<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:background="@color/darkblue"
android:orientation="vertical">


</LinearLayout>


</LinearLayout>



</RelativeLayout>

 

 

 

728x90
반응형