您好,登錄后才能下訂單哦!
<TextView android:id="@+id/firstview" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#ff0000" android:text="第一個Textview" /> <TextView android:id="@+id/second" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#00ff00" android:text="第二個textview" android:layout_toRightOf="@id/firstview" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#00ff00" android:text="第三個textview" android:layout_below="@id/firstview" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#00ff00" android:text="第四個" android:layout_alignRight="@id/second" android:layout_below="@id/second" />
以上包含相對布局中幾種簡單的屬性,截圖如下
<TextView android:id="@+id/firstview" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#ff0000" android:text="hello" android:textSize="50sp" /> <TextView android:id="@+id/second" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#0000ff" android:text="view" android:layout_alignBaseline="@id/firstview" android:layout_toRightOf="@id/firstview" />
android:layout_alignBaseline="@id/firstview"
上面這行代碼是對其到基準線的意思,什么是基準線,基準線就相當于四線格中的第三條線。效果圖如下
如圖所示,那條綠色的線就是基準線
與父空間邊緣對其
//android:layout_alignParentRight="true"
上一行代碼的屬性值只能為true或者false,因為一個控件他只能有一個父控件
執行該代碼之后,hello就會到達屏幕 的右側。
android:layout_centerInParent="true"http://出現在父控件的中央位置 android:layout_centerHorizontal="true"http://處于水平方向的中央位置上 android:layout_centerVertical="true"http://垂直方向的
Android4.2新特性
//android:layout_alignEnd="@id/firstview"http://對其控件的尾部或者start <TextView android:id="@+id/firstview" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#00ff00" android:text="hello" /> <TextView android:id="@+id/secondview" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#ff0000" android:layout_below="@id/firstview" android:layout_alignEnd="@id/firstview" android:text="abc" /> //android:layout_alignParentEnd="true"與父控件的尾部對其
Android登陸框布局
<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:padding="15dp" > <TextView android:id="@+id/lableView" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="登錄界面" android:gravity="center" /> <EditText android:id="@+id/usernameText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentRight="true" android:layout_below="@id/lableView" android:hint="username" /> <EditText android:id="@+id/passwordText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignRight="@id/usernameText" android:layout_alignLeft="@id/usernameText" android:layout_below="@id/usernameText" android:hint="password" android:inputType="textPassword" /> <Button android:id="@+id/cancelButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="取消" android:layout_below="@id/passwordText" android:layout_alignParentRight="true" /> <Button android:id="@+id/okButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignBottom="@id/cancelButton" android:layout_toLeftOf="@id/cancelButton" android:text="確定" /> </RelativeLayout>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。