界面布局-RelativeLayout

来源:互联网 发布:双色球必中蓝球算法 编辑:程序博客网 时间:2024/06/06 12:26

res/layout/activity_my.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:paddingBottom="@dimen/activity_vertical_margin"    android:paddingLeft="@dimen/activity_horizontal_margin"    android:paddingRight="@dimen/activity_horizontal_margin"    android:paddingTop="@dimen/activity_vertical_margin"    tools:context=".MyActivity" >    <TextView        android:id="@+id/label"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="@string/typehere" />    <EditText        android:id="@+id/entry"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:layout_below="@+id/label"        android:ems="10"        android:inputType="text" >        <requestFocus />    </EditText>    <Button        android:id="@+id/ok"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignParentRight="true"        android:layout_below="@+id/entry"        android:layout_marginLeft="10dp"        android:text="@string/submit" />    <Button        android:id="@+id/cancel"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignBaseline="@id/ok"        android:layout_below="@+id/entry"        android:layout_toLeftOf="@+id/ok"        android:text="@string/cancel" /></RelativeLayout>


 

http://www.zhangjianghome.net
原创粉丝点击