0%

Android相对布局

相对布局

相对布局还是很好用的,其实就是一个组件相对于另外一个组件的一个位置,我们只需要定好一个位置我们就可以推出来其他的位置。但是有一点就是需要注意的,由于我们需要相对性,所以我们需要ID,因此XML解析是需要顺序的,就是说我们如果这个控件是相对于那个控件的,那个控件就需要在我这个控件之前进行定义!
看一下示例代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/iv_icon"
android:layout_width="70dp"
android:layout_height="70dp"
android:src="@drawable/ic_launcher"
/>
<EditText
android:id="@+id/et_account"
android:layout_width="180dp"
android:layout_height="wrap_content"
android:text="请输入账号"
android:layout_toRightOf="@id/iv_icon"
/>
<EditText
android:id="@+id/et_password"
android:layout_width="180dp"
android:layout_height="wrap_content"
android:text="请输入密码"
android:layout_below="@id/et_account"
android:layout_toRightOf="@id/iv_icon"
/>
<TextView
android:id="@+id/register"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="注册账号"
android:layout_toRightOf="@+id/et_account"
android:layout_marginTop="15dip"
/>
<TextView
android:id="@+id/returnPassword"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="找回密码"
android:layout_toRightOf="@+id/et_account"
android:layout_marginTop="45dip"
/>
<CheckBox
android:id="@+id/remember"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="记住密码"
android:layout_toRightOf="@+id/iv_icon"
android:layout_below="@id/et_password"
/>
<CheckBox
android:id="@+id/auto_Login"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="自动登录"
android:layout_toRightOf="@+id/remember"
android:layout_below="@id/et_password"
/>
<Button
android:id="@+id/Login"
android:layout_width="300dip"
android:layout_height="wrap_content"
android:text="登录"
android:layout_below="@id/auto_Login"
android:layout_centerHorizontal="true"
/>
</RelativeLayout>

模仿QQ的一个登录界面