Android RelativeLayout总结
2010-08-23 05:10:00 来源:WEB开发网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"
Tags:Android RelativeLayout 总结
编辑录入:coldstar [复制链接] [打 印]- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››android中查看项目数字证书的两种方法
- ››Android中获取IMEI码的办法
- ››android 相机报错 setParameters failed
- ››Android重启运用程序的代码
- ››Android为ListView的Item设置不同的布局
- ››android bitmap与base64字符串的互相转换
更多精彩
赞助商链接