从零开始学android<RelativeLayout相对布局.十六.>
No.
|
属性名称
|
对应的规则常量
|
描述
|
1
|
android:layout_below
|
RelativeLayout.BELOW
|
|
2
|
android:layout_toLeftOf
|
RelativeLayout.LEFT_OF
|
|
3
|
android:layout_toRightOf
|
RelativeLayout.RIGHT_OF
|
|
4
|
android:layout_alignTop
|
RelativeLayout.ALIGN_TOP
|
|
5
|
android:layout_alignBottom
|
RelativeLayout.ALIGN_BOTTOM
|
|
6
|
android:layout_alignLeft
|
RelativeLayout.ALIGN_LEFT
|
|
7
|
android:layout_alignRight
|
RelativeLayout.ALIGN_RIGHT
|
|
<span style="font-size:18px;"><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" android:textAlignment="center" tools:context=".MainActivity" > <EditText android:id="@+id/editText1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_alignParentTop="true" android:ems="10" /> <EditText android:id="@+id/editText2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignRight="@+id/editText1" android:layout_below="@+id/editText1" android:ems="10" android:inputType="textPassword" > <requestFocus /> </EditText> <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignBottom="@+id/editText1" android:layout_alignParentLeft="true" android:text="账号" /> <TextView android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignBottom="@+id/editText2" android:layout_alignParentLeft="true" android:text="密码" android:textAlignment="center" /> <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/editText2" android:layout_marginLeft="23dp" android:layout_marginTop="36dp" android:layout_toRightOf="@+id/textView2" android:text="登 录" /> <TextView android:id="@+id/textView3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignBottom="@+id/button1" android:layout_marginLeft="14dp" android:layout_toRightOf="@+id/button1" android:autoLink="web" android:linksClickable="true" android:text="忘记密码" android:textAppearance="?android:attr/textAppearanceSmall" android:textSize="10dp" /> </RelativeLayout> </span>
使用相对布局是目前主要的布局方式,它比其他方式都方便快捷,可以再可视化界面直接拖拽即可。
1
|
public RelativeLayout.LayoutParams (int w, int h)
|
构造
|
指定RelativeLayout布局的宽度和高度
|
2
|
public void addRule (int verb, int anchor)
|
普通
|
|
3
|
public int[] getRules ()
|
普通
|
|
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。