그러냐

레이아웃 비율 본문

android

레이아웃 비율

관절분리 2016. 1. 28. 11:08
반응형

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:orientation="vertical"

    android:layout_width="fill_parent"

    android:layout_height="fill_parent"

    android:weightSum="1"

    android:background="#ffffffff">

<LinearLayout  

    android:layout_width="fill_parent" 

    android:layout_height="wrap_content"

    android:layout_weight="0.7"

    android:background="#ff000000"/>

</LinearLayout>

반응형