这些东西可以直接复制使用 保存下
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
??? android:orientation="vertical"
??? android:layout_width="fill_parent"
??? android:layout_height="wrap_content"
???
??? android:padding="10dip"
??? >
<TextView?
?android:id="@+id/label"
??? android:layout_width="fill_parent"
??? android:layout_height="wrap_content"
??? android:text="请输入用户名:"
??? />
?? <!-- 输入框放在textview下面 -->
<EditText
?android:id="@+id/entry"
?android:layout_width="fill_parent"
??? android:layout_height="wrap_content"
??? android:layout_below="@id/label"
/>
<!-- 先设置取消按钮向右靠,并设置边距10dip -->
<Button
?android:id="@+id/cancel"
?android:layout_width="wrap_content"
??? android:layout_height="wrap_content"
??? android:layout_below="@id/entry"
??? android:layout_alignParentRight="true"
??? android:padding="10dip"
??? android:text="取消"
/>
<Button
?android:id="@+id/ok"
?android:layout_width="wrap_content"
??? android:layout_height="wrap_content"
??android:layout_alignTop="@id/cancel"
??android:layout_toLeftOf="@id/cancel"
?android:text="确定"
/>
</RelativeLayout>