浅析Android App的相对布局RelativeLayout

浅析Android App的相对布局RelativeLayout,第1张

概述一、什么是相对布局相对布局是另外一种控件摆放的方式相对布局是通过指定当前控件与兄弟控件或者父控件之间的相对位置,从而达到相对的位置

一、什么是相对布局
相对布局是另外一种控件摆放的方式
相对布局是通过指定当前控件与兄弟控件或者父控件之间的相对位置,从而达到相对的位置

二、为什么要使用相对布局
相对于线性布局ui性能好

三、相对布局的两组常用属性
值为某个存在控件ID:

(1)androID:layout_below放在某个存在ID控件的下边缘(也就是当前控件的上边对齐到某个ID控件的下边缘

(2)androID:layout_above放在某个存在ID控件的上边缘(也就是当前控件的下边缘对齐到某个ID控件的上边缘

(3)androID:layout_toleftOf 放在某个存在ID控件的左边(也就是当前控件的右边对齐到某个ID控件的左边

(4)androID:layout_toRightOf  放在某个存在ID控件的右边(也就是当前控件的左边对齐到某个ID控件的右边)

(5)androID:layout_alignleft 当前的控件左边缘对齐到某个存在的ID控件的左边缘

(6)androID:layout_alignRigth 当前的控件右边缘对齐到某个存在的ID控件的右边缘

(7)androID:layout_aligntop 当前的控件上边缘对齐到某个存在的ID控件的上边缘

(8)androID:alignBottom 当前的控件下边缘对齐到某个存在的ID控件的下边缘

1.对齐至控件的基准线
基准线是为了保证印刷字母的整齐而划定的线
值为某个存在控件的ID:
androID:layout_alignBaseline

2.与父控件的四个边缘对齐
值为true or  false:
(1)androID:layout_aliginParentleft 对齐到父控件的左边
(2)androID:layout_alignParentRight 对钱对齐到父控件的右边
(3)androID:layout_alignParenttop对齐到父控件的上边
(4)androID:layout_alignParentBottom 对齐到父控件的下边

3.对齐至父控件的中央位置
值为 true or false:
(1)androID:layout_centerInParent  对齐到父控件的最中央位置
(2)androID:layout_layout_Horizontal 对齐到父控件水平方向中央的位置
(3)androID:layout_centerVertical  对齐到父控件垂直方向中央的位置

4.androID 4.2  relativelayout布局的新属性
值为某个存在控件的di:
(1)androID:layout_alignStart 当前控件的起始位置对对齐到某个存在控件ID的起始位置
(2)androID:layout_alignEnd  当前控件的起始位置对对齐到某个存在控件ID的对齐到终点位置

值为true or false:
(1)androID:layout_alignParentStart  对齐到父控件的起始位置
(2)androID:layout_alignParentEnd 对齐到父控件的终点位置

5.字体居中

androID:gravity="center"
默认值:
androID:hint="值"
andriod:inputType="textpassworld"

四、相对布局实例―登录界面

<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:layout_margin="20dp"   tools:context=".MainActivity" >      <TextVIEw      androID:ID="@+ID/TxtTitle"     androID:layout_wIDth="wrap_content"     androID:layout_height="wrap_content"     androID:layout_alignParentleft="true"     androID:gravity="center_horizontal"     androID:layout_alignParentRight="true"     androID:text="登录界面"/>    <EditText     androID:ID="@+ID/username"     androID:layout_wIDth="wrap_content"     androID:layout_height="wrap_content"     androID:layout_alignleft="@ID/TxtTitle"     androID:layout_alignRight="@ID/TxtTitle"     androID:layout_below="@ID/TxtTitle"      androID:layout_margintop="20dp"     androID:hint="username"/>   <EditText      androID:ID="@+ID/password"     androID:layout_wIDth="wrap_content"     androID:layout_height="wrap_content"     androID:layout_below="@ID/username"     androID:layout_alignleft="@ID/username"     androID:layout_alignRight="@ID/username"      androID:layout_margintop="20dp"     androID:hint="password"     androID:inputType="textCapWords"/>  </relativeLayout> 

总结

以上是内存溢出为你收集整理的浅析Android App的相对布局RelativeLayout全部内容,希望文章能够帮你解决浅析Android App的相对布局RelativeLayout所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1142001.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存