관리 메뉴

moozi

안드로이드 레이아웃연습 본문

카테고리 없음

안드로이드 레이아웃연습

moozi 2015. 9. 10. 12:52
<LinearLayout 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="wrap_content"
android:orientation="horizontal"
>
<TextView
android:layout_width="200dp"
android:layout_height="200dp"
android:text="t1"
android:background="#ff0000"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<TextView
android:layout_width="match_parent"
android:layout_height="100dp"
android:text="t2"
android:background="#00ff00"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="100dp"
android:text="t3"
android:background="#0000ff"
/>
</LinearLayout>
</LinearLayout>

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="t4"
android:background="#000000"
/>

</LinearLayout>
Comments