溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

android基礎(chǔ)之RelativeLayout布局

發(fā)布時間:2020-06-19 19:44:05 來源:網(wǎng)絡(luò) 閱讀:504 作者:hagar 欄目:移動開發(fā)

RelativeLayout布局 

在相對布局中,至少要確定組件的“左右“ “上下” 兩個位置才能準(zhǔn)確固定組件位置

組件之間的位置關(guān)系:

android:layout_above 

android:layout_above="@id/btn2"表示與id為btn2的組件的上邊緣對齊

android:layout_below

android:layout_toLeftOf

android:layout_toRightOf

組件對齊方式:

android:layout_alignBaseline 將該組件放在指定id組件進(jìn)行中心線對齊

android:layout_alignTop

android:layout_alignBottom

android:layout_alignLeft

android:layout_alignRight

當(dāng)前組件與父組件的對齊方式:

android:layout_alignParentTop與父組件進(jìn)行頂部對齊

android:layout_alignParentBottom

android:layout_alignParentLeft

android:layout_alignParentRight

組件放置位置:

android:layout_centerHorizontal放置在水平方向的中央位置

android:layout_centerVertical放置為垂直方向的中央位置

android:layout_centerInParent放置在父組件的水平中央及垂直中央的位置


以下代碼示例:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:paddingBottom="@dimen/activity_vertical_margin"

    android:paddingLeft="@dimen/activity_horizontal_margin"

    android:paddingRight="@dimen/activity_horizontal_margin"

    android:paddingTop="@dimen/activity_vertical_margin"

    tools:context=".MainActivity" >

<Button

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:text="Button1"

    android:id="@+id/btn1"

    />

    <Button

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:text="Button2"

        android:id="@+id/btn2"

        android:layout_below="@id/btn1"

        />

    <Button

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:text="Button3"

        android:id="@+id/btn3"

        android:layout_below="@id/btn2"

        android:layout_alignParentRight="true"

        />

     <Button

         android:layout_width="wrap_content"

         android:layout_height="wrap_content"

         android:text="Button4"

         android:id="@+id/btn4"

         android:layout_below="@id/btn3"

         android:layout_alignParentRight="true"

         />

     <Button

         android:layout_width="wrap_content"

         android:layout_height="wrap_content"

         android:text="Button5"

         android:id="@+id/btn5"

         android:layout_below="@id/btn4"

         android:layout_centerHorizontal="true"

         />

</RelativeLayout>

android基礎(chǔ)之RelativeLayout布局


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI