android:gravity 是用于子控件在当前控件中的排列位置
android:layout_gravity 是用于当前控件在父控件中的排列位置
参数有:
参数 | 数值 | 描述 |
top | 0x30 | 紧靠容器顶端,不改变其大小 |
bottom | 0x50 | 紧靠容器底部,不改变其大小 |
left | 0x03 | 紧靠容器左侧,不改变其大小 |
right | 0x05 | 紧靠容器右侧,不改变其大小 |
center_vertical | 0x10 | 垂直居中,不改变其大小 |
fill_vertical | 0x70 | 垂直方向上拉伸至充满容器 |
center_horizontal | 0x01 | 水平居中,不改变其大小 |
Fill_horizontal | 0x07 | 水平方向上拉伸使其充满容器 |
center | 0x11 | 居中对齐,不改变其大小 |
fill | 0x77 | 在水平和垂直方向上拉伸,使其充满容器 |
clip_vertical | 0x80 | 垂直剪切(当对象边缘超出容器的时候,将上下边缘超出的部分剪切掉) |
clip_horizontal | 0x08 | 水平剪切(当对象边缘超出容器的时候,将左右边缘超出的部分剪切掉) |
可以同时选择多个参数,参数之间用|符号隔开
例如:android:gravity = "left|bottom" 左对齐和底对齐