note 11-android relative layout

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:padding="30dip"
    >
        
    <TextView
        android:id="@+id/label"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Type here"
        />
        
    <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:paddingLeft="20dip"
        android:paddingRight="20dip"
        android:text="OK"
        />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/entry"
        android:layout_toLeftOf="@id/ok"
        android:layout_alignBottom="@id/ok"
        android:text="Cancel"
        />
        
        
    
        
</RelativeLayout>

Note this line:

android default drawable element

 android:background="@android:drawable/editbox_background"

猜你喜欢

转载自julianjulian8.iteye.com/blog/1734259
今日推荐