经典button布局_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 经典button布局

经典button布局

 2010/12/31 8:12:46  wangshiming88  http://jiangnanlove.javaeye.com  我要评论(0)
  • 摘要:这些东西可以直接复制使用保存下<?xmlversion="1.0"encoding="utf-8"?><RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:orientation="vertical"android:layout_width="fill_parent"android:layout_height="wrap_content"android
  • 标签:经典

这些东西可以直接复制使用 保存下

<?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>

发表评论
用户名: 匿名