Views_Layout_Linear Layout_Vertical
[기본 Form]
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="@drawable/blue"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:background="@drawable/box"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/linear_layout_1_top"/>
<TextView
android:background="@drawable/box"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/linear_layout_1_middle"/>
<TextView
android:background="@drawable/box"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/linear_layout_1_bottom"/>
</LinearLayout>
[linear_layout_1.xml] - Vertical
[linear_layout_2.xml] - Vertical (Fill Screen)
[linear_layout_3.xml] - Vertical (Padded)