Scripts 学盟

标题: android 开发 RelativeLayout 使用(一) [打印本页]

作者: 那个谁    时间: 2011-5-24 11:14:37     标题: android 开发 RelativeLayout 使用(一)

前面讲了RelativeLayout的属性。。今天来做个dome 代码如下:
  1. <RelativeLayout
  2.   xmlns:android="http://schemas.android.com/apk/res/android"
  3.   android:layout_width="match_parent"
  4.   android:layout_height="match_parent" android:padding="10dip">
  5.   <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/lable" android:text="请输入用户名">
  6.   </TextView>
  7.   <EditText android:id="@+id/entry"  android:layout_width="fill_parent" android:layout_height="wrap_content"
  8.    android:layout_below="@id/lable">
  9.   </EditText>
  10.   <Button android:id="@+id/cancel"  android:layout_width="wrap_content" android:layout_height="wrap_content"
  11.    android:layout_below="@id/entry" android:layout_alignParentRight="true" android:layout_marginLeft="10dip" android:text="取消"></Button>
  12. <Button android:id="@+id/ok"  android:layout_width="wrap_content" android:layout_height="wrap_content"
  13. android:layout_toLeftOf="@id/cancel" android:layout_alignTop="@id/cancel" android:text="确定"
  14. >
  15. </Button>
  16. </RelativeLayout>
复制代码
效果:
[attach]1[/attach]
  1. <RelativeLayout
  2.   xmlns:android="http://schemas.android.com/apk/res/android"
  3.   android:layout_width="match_parent"
  4.   android:layout_height="match_parent" android:padding="10dip">
  5.   <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/lable" android:text="请输入用户名">
  6.   </TextView>
  7.   <EditText android:id="@+id/entry"  android:layout_width="fill_parent" android:layout_height="wrap_content"
  8.    android:layout_below="@id/lable">
  9.   </EditText>
  10.   <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/lable2" android:text="请输入密码"
  11.   android:layout_below="@id/entry" >
  12.   </TextView>
  13.   <EditText android:id="@+id/entrypassword"  android:layout_width="fill_parent" android:password="true" android:layout_height="wrap_content"
  14.    android:layout_below="@id/lable2">
  15.   </EditText>
  16.   
  17.   <Button android:id="@+id/cancel"  android:layout_width="wrap_content" android:layout_height="wrap_content"
  18.    android:layout_below="@id/entrypassword" android:layout_alignParentRight="true" android:layout_marginLeft="10dip" android:text="取消"></Button>
  19. <Button android:id="@+id/ok"  android:layout_width="wrap_content" android:layout_height="wrap_content"
  20. android:layout_toLeftOf="@id/cancel" android:layout_alignTop="@id/cancel" android:text="确定"
  21. >
  22. </Button>
  23. </RelativeLayout>
复制代码
[attach]2[/attach]

附件: qqq.png (2011-5-24 11:14:05, 54.77 KB) / 下载次数 296
http://www.iscripts.org/forum.php?mod=attachment&aid=NDR8ZjQ1ZGNkZDN8MTcxNTkyMzI2OXwwfDA%3D

附件: qqq.png (2011-5-24 11:58:14, 70 KB) / 下载次数 304
http://www.iscripts.org/forum.php?mod=attachment&aid=NDV8ZGM2ODFlNzN8MTcxNTkyMzI2OXwwfDA%3D
作者: Yisin    时间: 2011-5-24 19:11:23

来学习一下
作者: 混混@普宁.中国    时间: 2011-7-12 00:17:40

我哪里吝啬了




欢迎光临 Scripts 学盟 (http://www.iscripts.org/) Powered by Discuz! X2