Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说安卓开发学习之002 LinearLayout之android:layout_gravity详解[通俗易懂],希望能够帮助你!!!。
这个是针对控件本身而言,用来控制该控件在包含该控件的父控件中的位置。同样,当我们在Button按钮控件中设置android:layout_gravity=”left”属性时,表示该Button按钮将位于界面的左部。
这两个属性可选的值有:top、bottom、left、right、center_vertical、fill_vertical、center_horizontal、fill_horizontal、center、fill、clip_vertical。
一个属性可以包含多个值,需用“|”分开。其含义如下:
属性值 | 含义 |
---|---|
top | 将对象放在其容器的顶部,不改变其大小. |
bottom | 将对象放在其容器的底部,不改变其大小. |
left | 将对象放在其容器的左侧,不改变其大小. |
right | 将对象放在其容器的右侧,不改变其大小. |
center_vertical | 将对象纵向居中,不改变其大小. 垂直对齐方式:垂直方向上居中对齐。 |
fill_vertical | 必要的时候增加对象的纵向大小,以完全充满其容器. 垂直方向填充 |
center_horizontal | 将对象横向居中,不改变其大小. 水平对齐方式:水平方向上居中对齐 |
fill_horizontal | 必要的时候增加对象的横向大小,以完全充满其容器.水平方向填充 |
center | 将对象横纵居中,不改变其大小. |
fill | 必要的时候增加对象的横纵向大小,以完全充满其容器. |
clip_vertical | 附加选项,用于按照容器的边来剪切对象的顶部和/或底部的内容. 剪切基于其纵向对齐设置:顶部对齐时,剪切底部;底部对齐时剪切顶部;除此之外剪切顶部和底部. 垂直方向裁剪 |
clip_horizontal | 附加选项,用于按照容器的边来剪切对象的左侧和/或右侧的内容. 剪切基于其横向对齐设置:左侧对齐时,剪切右侧;右侧对齐时剪切左侧;除此之外剪切左侧和右侧. 水平方向裁剪 |
布局文件为res/layout/fragment_layout_gravity.xml
<?xml version="1.0" encoding="utf-8"?>
<!--当我们采用LinearLayout布局时,有以下特殊情况需要我们注意: (1)当 android:orientation="vertical" 时, android:layout_gravity只有水平方向的设置才起作用, 垂直方向的设置不起作用。即:left,right,center_horizontal 是生效的。 (2)当 android:orientation="horizontal" 时, android:layout_gravity只有垂直方向的设置才起作用, 水平方向的设置不起作用。即:top,bottom,center_vertical 是生效的。 -->
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical">
<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical">
<LinearLayout android:layout_width="match_parent" android:layout_height="200dp" android:orientation="horizontal">
<!-- 靠上对齐 将对象推至其所在容器的顶端而不改变其尺寸-->
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="top" android:text="top"/>
<!-- 靠下对齐-->
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="bottom" android:text="bottom"/>
<!-- 垂直居中-->
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:text="cen_ver"/>
<!-- 有需要时将沿垂直方向填满容器-->
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="fill_vertical" android:text="fill_ver" />
<!--clip_vertical 垂直方向裁剪 当对象边缘超出容器的时候,将上下边缘超出的部分剪切掉,剪切基于纵向对齐设置: 默认剪切底部 注意此属性要在父容器中设置,并且子视图高度比父视图高度高-->
<LinearLayout android:layout_width="wrap_content" android:layout_height="30dp" android:layout_gravity="top|clip_vertical" >
<!-- 剪切底部-->
<Button android:layout_width="wrap_content" android:layout_height="60dp" android:text="top|clip_ver"/>
</LinearLayout>
<!--注意,不同于在gravity中属性,这里bottom只是表明控件位于底部,clip_horizontal 仍然是默认剪切底部 如果需要剪切上部,则添加属性android:gravity="bottom|clip_vertical"-->
<LinearLayout android:layout_width="wrap_content" android:layout_height="30dp" android:layout_gravity="bottom|clip_vertical" >
<Button android:layout_width="wrap_content" android:layout_height="60dp" android:text="bot|clip_ver"/>
</LinearLayout>
<!--剪切上部-->
<LinearLayout android:layout_width="wrap_content" android:layout_height="30dp" android:layout_gravity="bottom|clip_vertical" android:gravity="bottom|clip_vertical" >
<Button android:layout_width="wrap_content" android:layout_height="60dp" android:text="bot|clip_ver"/>
</LinearLayout>
</LinearLayout>
<View android:layout_width="match_parent" android:layout_height="2dp" android:background="#f00"/>
<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical">
<!-- 默认值 控件左对齐,文字居中对齐-->
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="default" />
<!-- 靠右对齐-->
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="right" android:text=" مرحبا right"/>
<!-- 靠左对齐-->
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="left" android:text=" مرحبا left"/>
<!-- 基于阅读顺序的开始位置对齐 如果时从左到右的语言文字(中英文),那么start就等同于left 如果时从右到左的语言文字(阿拉伯语),那么start就等同于right 可在布局预览界面 选择preview Right-To-Left 产看效果 -->
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="start" android:text="مرحباstart"/>
<!-- 基于阅读顺序的结束位置对齐 如果时从左到右的语言文字(中英文),那么end就等同于right 如果时从右到左的语言文字(阿拉伯语),那么end就等同于left 可在布局预览界面 选择preview Right-To-Left 产看效果 -->
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="end" android:text="مرحباend"/>
<!-- 水平居中-->
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:text="center_horizontal"/>
<!-- 垂直加水平方向居中 效果等同于center_vertical|center_horizontal-->
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:text="center"/>
<!-- 有需要时将沿水平方向填满容器-->
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="fill_horizontal" android:text="fill_horizontal"/>
<!-- 有需要时将沿水平方向和垂直方向填满容器-->
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="fill" android:text="fill"/>
<!--clip_horizontal 水平方向裁剪 当对象边缘超出容器的时候,将左右边缘超出的部分剪切掉,剪切基于横向对齐设置: 默认剪切右部 注意此属性要在父容器中设置,并且子视图宽度比父视图宽度大-->
<LinearLayout android:layout_width="100dp" android:layout_height="match_parent" android:layout_gravity="left|clip_horizontal" >
<!--剪切右部-->
<Button android:layout_width="200dp" android:layout_height="match_parent" android:text="left|clip_horizontal"/>
</LinearLayout>
<!--注意,不同于在gravity中,这里right只是表明控件位于右部,clip_horizontal 仍然是默认剪切右部 如果需要剪切右部,则添加属性android:gravity="right|clip_horizontal"-->
<LinearLayout android:layout_width="200dp" android:layout_height="50dp" android:layout_gravity="right|clip_horizontal" >
<Button android:layout_width="250dp" android:layout_height="match_parent" android:text="right|clip_horizontal"/>
</LinearLayout>
<!--剪切右部-->
<LinearLayout android:layout_width="200dp" android:layout_height="50dp" android:layout_gravity="right|clip_horizontal" android:gravity="right|clip_horizontal" >
<Button android:layout_width="250dp" android:layout_height="match_parent" android:text="right|clip_horizontal"/>
</LinearLayout>
</LinearLayout>
</LinearLayout>
</ScrollView>
当我们采用LinearLayout布局时,有以下特殊情况需要我们注意:
(1)当 android:orientation=”vertical” 时, android:layout_gravity只有水平方向的设置才起作用,
垂直方向的设置不起作用。即:left,right,center_horizontal 是生效的。
(2)当 android:orientation=”horizontal” 时, android:layout_gravity只有垂直方向的设置才起作用,
水平方向的设置不起作用。即:top,bottom,center_vertical 是生效的。
android:gravity:
这个是针对控件里的元素来说的,用来控制元素在该控件里的显示位置
android:layout_gravity:
这个是针对控件本身而言,用来控制该控件在包含该控件的父控件中的位置
开发工具:Android Studio1.4
SDK: Android 6.0
API 23
代码下载:Layout_Gravity.zip