[relative_layout_2.xml]

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/blue"
    android:padding="10dip">

    <TextView
        android:id="@+id/label"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/relative_layout_2_instructions"/>

    <EditText
        android:id="@+id/entry"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@android:drawable/editbox_background"
        android:layout_below="@id/label"/>

    <Button
        android:id="@+id/ok"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
       android:layout_below="@id/entry"
       android:layout_alignParentRight="true"
        android:layout_marginLeft="10dip"
        android:text="@string/relative_layout_2_ok" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
      android:layout_toLeftOf="@id/ok"
      android:layout_alignTop="@id/ok"

        android:text="@string/relative_layout_2_cancel" />

</RelativeLayout>


 

'old > API_Demo' 카테고리의 다른 글

Views_Layout_ScrollView_Long  (0) 2010.04.26
Views_Layout_ScrollView_Short  (0) 2010.04.26
Views_Layout_Relative Layout_Vertical  (0) 2010.04.26
Views_Layout_Linear Layout_Background Image  (0) 2010.04.26
Views_Layout_Linear Layout_Layout Weight  (0) 2010.04.26
Posted by jazzlife
,