RelativeLayout相對布局

2021-08-02 06:31:12 字數 3638 閱讀 4281

relativelayout

相對布局

相對布局

relativelayout

允許子元素指定它們相對於其父元素或兄弟元素的位置,這是實際布局中最常用的布局方式之一。它靈活性大很多,當然屬性也多,操作難度也大,屬性之間產生衝突的的可能性也大,使用相對布局時要多做些測試。

<?

xml version="1.0"encoding="utf-8"?>

<relativelayoutxmlns:android=""android:orientation="vertical"android:layout_width="match_parent"android:layout_height="match_parent">

<relativelayoutandroid:layout_width="250dp"android:layout_height="250dp">

<buttonandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="左上"/>

<buttonandroid:layout_width="wrap_content"android:layout_height="0dp"android:width="7dp"/>

<buttonandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="右上"android:layout_alignparentright="true"/>

<buttonandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="中間"android:layout_centerinparent="true"/>

<buttonandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="左下"android:layout_alignparentbottom="true"/>

<buttonandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_alignparentbottom="true"android:layout_alignparentright="true"android:text="右下"/>

relativelayout>

relativelayout>

RelativeLayout相對布局

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

RelativeLayout 重要屬性

第一類 屬性值為true或false android layout centerhrizontal 水平居中 android layout centervertical 垂直居中 android layout centerinparent 相對于父元素完全居中 android layout alig...

relativelayout布局相關

在相對布局 relativelayout 中,子控制項的位置是相對兄弟控制項或父容器而決定的。出於效能考慮,在設計相對布局時,要按照控制項之間的依賴關係排列。如view a的位置相當於view b來決定,則需要保證布局檔案中view b在view a的前面。在進行相對布局時,用到的布局屬性有很多,首...