android:layout_above="@id/xxx" --將控件置於給定ID控件之上
android:layout_below="@id/xxx" --將控件置於給定ID控件之下android
android:layout_toLeftOf="@id/xxx" --將控件的右邊緣和給定ID控件的左邊緣對齊
android:layout_toRightOf="@id/xxx" --將控件的左邊緣和給定ID控件的右邊緣對齊佈局
android:layout_alignLeft="@id/xxx" --將控件的左邊緣和給定ID控件的左邊緣對齊
android:layout_alignTop="@id/xxx" --將控件的上邊緣和給定ID控件的上邊緣對齊
android:layout_alignRight="@id/xxx" --將控件的右邊緣和給定ID控件的右邊緣對齊
android:layout_alignBottom="@id/xxx" --將控件的底邊緣和給定ID控件的底邊緣對齊
android:layout_alignParentLeft="true" --將控件的左邊緣和父控件的左邊緣對齊
android:layout_alignParentTop="true" --將控件的上邊緣和父控件的上邊緣對齊
android:layout_alignParentRight="true" --將控件的右邊緣和父控件的右邊緣對齊
android:layout_alignParentBottom="true" --將控件的底邊緣和父控件的底邊緣對齊
android:layout_centerInParent="true" --將控件置於父控件的中心位置
android:layout_centerHorizontal="true" --將控件置於水平方向的中心位置
android:layout_centerVertical="true" --將控件置於垂直方向的中心位置spa
其中很重要的android:layout_alignParentLeft="true" --將控件的左邊緣和父控件的左邊緣對齊有時候找不到知道爲啥?.net
那是由於你的父控件不是相對佈局,當你的父控件是相對佈局,子控件才能顯示這個屬性哦,你們要注意哦code
?orm
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
|
<
span
style
=
"font-size:14px;"
><?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
<
selector
xmlns:android
=
"http://schemas.android.com/apk/res/android"
>
<!-- 默認時的背景圖片 -->
<
item
android:drawable
=
"@drawable/pic1"
/>
<!-- 沒有焦點時的背景圖片 -->
<
item
android:state_window_focused
=
"false"
android:drawable
=
"@drawable/pic1"
/>
<!-- 非觸摸模式下得到焦點並單擊時的背景圖片 -->
<
item
android:state_focused
=
"true"
android:state_pressed
=
"true"
android:drawable
=
"@drawable/pic2"
/>
<!-- 觸摸模式下單擊時的背景圖片 -->
<
item
android:state_focused
=
"false"
android:state_pressed
=
"true"
android:drawable
=
"@drawable/pic3"
/>
<!--選中時的圖片背景 -->
<
item
android:state_selected
=
"true"
android:drawable
=
"@drawable/pic4"
/>
<!--得到焦點時的圖片背景 -->
<
item
android:state_focused
=
"true"
android:drawable
=
"@drawable/pic5"
/>
</
selector
></
span
>
|