AndroID的布局文件中,如果想让一个组件(布局或VIEw)居中显示在另一个布局(组件)中,可以由这么几种做法:
androID:layout_gravity androID:gravity androID:layout_centerInParentlayout_gravity
androID:layout_gravity ,用来指定当前组件(布局或VIEw)在父组件(布局)中的位置,父布局应该是linearLayout或者它的后裔。
layout_gravity取值可能是:
top bottom left right center_vertical fill_vertical center_horizontal fill_horizontal center fill clip_vertical clip_horizontal start end与居中相关的已经粗体标注出来。各种取值的具体含义,参看:
https://developer.androID.com/reference/androID/Widget/linearLayout.LayoutParams.HTML 。
gravity
androID:gravity 是VIEw的属性,用来指定VIEw的子组件在VIEw中的位置。适用于所有的VIEw和布局。它的取值有很多,具体参见: https://developer.androID.com/reference/androID/vIEw/Gravity.HTML 。
与居中相关的取值:
center center_horizontal center_vertical当你设定一个布局 androID:gravity="center" 时,它的子组件就会居中。当你设定一个VIEw androID:gravity="center" 时,它的内容会居中,以TextVIEw为例,文字会居中。
layout_centerInParent
androID:layout_centerInParent 是relativeLayout的布局属性,如果一个组件(布局或VIEw)的父布局是relativeLayout,就可以使用这个属性来居中。其取值为 true 或 false 。
与其类似的还有:
androID:layout_centerHorizontal androID:layout_centerVertical具体含义和用法参看: https://developer.androID.com/reference/androID/Widget/relativeLayout.LayoutParams.HTML 。
以上就是对AndroID 布局居中的几种方法整理,后续继续补充相关资料,谢谢大家对本站的支持!
总结以上是内存溢出为你收集整理的Android布局居中的几种做法全部内容,希望文章能够帮你解决Android布局居中的几种做法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)