[relative_layout_1.xml]
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/view1"
android:background="@drawable/red"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:text="@string/relative_layout_1_top"/>
<TextView
android:id="@+id/view2"
android:background="@drawable/green"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text="@string/relative_layout_1_bottom"/>
<TextView
android:id="@+id/view3"
android:background="@drawable/yellow"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_above="@id/view2"
android:layout_below="@id/view1"
android:text="@string/relative_layout_1_center"/>
</RelativeLayout>
'old > API_Demo' 카테고리의 다른 글
Views_Layout_ScrollView_Short (0) | 2010.04.26 |
---|---|
Views_Layout_Relative Layout_Simple Form (0) | 2010.04.26 |
Views_Layout_Linear Layout_Background Image (0) | 2010.04.26 |
Views_Layout_Linear Layout_Layout Weight (0) | 2010.04.26 |
Views_Layout_Linear Layout_Gravity (0) | 2010.04.26 |