相對布局 中

2022-08-19 07:09:10 字數 2857 閱讀 4679

1. 對齊至控制項的基準線

2. 與父控制項的四個邊緣對齊

3. 對齊至父控制項的**

1. 對齊至控制項的基準線

1

""2 xmlns:tools="

"3 android:layout_width="

match_parent

"4 android:layout_height="

match_parent

"5 tools:context="

first.pack.mainactivity$placeholderfragment

" >67

8 android:id="

@+id/firstview

"9 android:layout_width="

wrap_content

"10 android:layout_height="

wrap_content

"11 android:textsize="

50sp

"12 android:background="

#ff0000

"13 android:text="

hello

" />

1415

16 android:layout_width="

wrap_content

"17 android:layout_height="

wrap_content

"18 android:layout_torightof="

@+id/firstview

"19 android:layout_alignbaseline="

@+id/firstview"//

對齊基準線!!!

20 android:background="

#00ff00

"21 android:text="

mirrorhanyu

" />

2223

2. 與父控制項的四個邊緣對齊

1

""2 xmlns:tools="

"3 android:layout_width="

match_parent

"4 android:layout_height="

match_parent

"5 tools:context="

first.pack.mainactivity$placeholderfragment

" >67

8 android:id="

@+id/firstview

"9 android:layout_width="

wrap_content

"10 android:layout_height="

wrap_content

"11 android:textsize="

50sp

"12 android:background="

#ff0000

"13 android:layout_alignparentright="

true"//

與父控制項右邊對齊

14 android:text="

hello

" />

1516

當**為

1

""2 xmlns:tools="

"3 android:layout_width="

match_parent

"4 android:layout_height="

match_parent

"5 tools:context="

first.pack.mainactivity$placeholderfragment

" >67

8 android:layout_width="

wrap_content

"9 android:layout_height="

300dp

"10 android:background="

#00ff00

">

1112 android:id="

@+id/firstview

"13 android:layout_width="

wrap_content

"14 android:layout_height="

wrap_content

"15 android:textsize="

50sp

"16 android:background="

#ff0000

"17 android:layout_alignparentright="

true"//

與就近的父控制項對齊

18 android:layout_alignparentbottom="

true

"19 android:text="

hello

" />

2021

3. 對齊至父控制項的**

Android布局(相對布局)

relativelayout相對布局裡常用的位置屬性 2.id型xml屬性 android layout above 該元件位於引用元件的上方 android layout below 該元件位於引用元件的下方 android layout toleftof 該元件位於引用元件的左方 android...

Android相對布局

2 相對布局 如圖 梅花布局 如下 android layout width match parent android layout height match parent android id id no.0 android layout width wrap content android la...

RelativeLayout相對布局

relativelayout相對布局是個人覺得在android布局中比較常用且好用的乙個,當然如果想讓布局更漂亮是需要多種布局混合搭建的,這裡就需要更深入的學習了,在這只介紹下有關相對布局的東西。相對於兄弟元素 android layout below id aaa 在指定view的下方 andro...