相對布局之相對布局常用的兩組屬性

2022-07-27 06:12:13 字數 828 閱讀 2587

相對布局是通過指定當前控制項與兄弟控制項或者是父控制項之間的相對位置,從而達到控制控制項位置的目的

先看第一組屬性                              

android:layout_toleftof               

android:layout_torightof    將當前控制項的左邊緣對其id所指定控制項的右邊緣對齊

android:layout_below

android:layout_above

android:id="@+id/textviewid"android:layout_width="wrap_content"android:layout_height="wrap_content"android:background="#ff0000"android:text="第乙個textview" />

android:layout_width="wrap_content"android:layout_height="wrap_content"android:background="#00ff00"android:layout_torightof="@id/textviewid"android:text="第二個textview" />

其它的都類似。

第二組屬性

android:layout_alignleft            將當前控制項的左邊緣與其id所指定的控制項的右邊緣對其(與上類似)

android:layout_alignright

android:layout_aligntop

android:layout_alignbottom

相對布局的屬性

相對于父元件 android layout alignparenttop 如果為true,將該控制項的頂部與其父控制項的頂部對齊 android layout alignparentbottom 如果為true,將該控制項的底部與其父控制項的底部對齊 android layout alignpare...

第23講 UI 布局 之相對布局

第23講 ui 布局 之相對布局 2 relativelayout 相對布局 relativelayout 相對布局 是指元件的位置總是相對兄弟元件 父容器來決定的 相對位置 如某個元件的左邊右邊,上邊下邊。相對布局是除線性布局之外最常用的,它相對於線性布局來說更加靈活,每個元件都可以指定與其它元件...

DIV的相對布局和絕對布局

position relative 相對定位 使用position relative,就需要top,bottom,left,right4個屬性來配合,確定元素的位置。如果要讓div 1層向下移動20px,左移40px example div 1 如果用到相對定位,緊隨他的層divafter是不會出現...