WEB开发网
开发学院手机开发Android 开发 Android RelativeLayout总结 阅读

Android RelativeLayout总结

 2010-08-23 05:10:00 来源:WEB开发网   
核心提示:RelativeLayout关系布局:在form中的用法:"@[+][package:]type:name" (@id/viewName)在主题模式form中的用法: "?[package:][type:]name".(还没见过相关的例子)android:layout_above

RelativeLayout关系布局:

在form中的用法:"@[+][package:]type:name" (@id/viewName)

在主题模式form中的用法: "?[package:][type:]name".(还没见过相关的例子)

android:layout_above VS android:layout_below:

设定当前view和相关的view在垂直方向上的关系,above是上相关view的上面,below是在相关view的下面,above让当前view的下面界和相关view的上边界对齐。相反below则是将当前view和相关view的上边界对齐。

在form中的用法:"@[+][package:]type:name" (@id/viewName)

在主题模式form中的用法: "?[package:][type:]name".(还没见过相关的例子)

android:layout_alignBaseline

大概相当于水平中心线对齐。

android:layout_alignBottom

android:layout_alignLeft

android:layout_alignRight

android:layout_alignTop

以上这些同理。

android:layout_alignParentBottom

android:layout_alignParentLeft

android:layout_alignParentRight

android:layout_alignParentTop

android:layout_centerHorizontal

android:layout_centerInParentc

android:layout_centerVertical

以上四项是指在父容器中的位置。

android:layout_alignWithParentIfMissing

If set to true, the parent will be used as the anchor when the anchorcannot be be found for layout_toLeftOf, layout_toRightOf, etc.

如果设为true,当找不到toLeftOf或toRightOf的view的时候,父容器将成为锚点,以父容器做为布局的依据。

代码

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

android:orientation="vertical" android:layout_width="fill_parent"

android:layout_height="fill_parent">

< TextView android:id="@+id/label" android:layout_width="fill_parent"

android:layout_height="wrap_content" android:text="Type here:" />

< EditText android:id="@+id/txt" android:layout_width="match_parent"

1 2  下一页

Tags:Android RelativeLayout 总结

编辑录入:coldstar [复制链接] [打 印]
赞助商链接