layout_gravity屬性是用來設(shè)置View在其父布局中的對(duì)齊方式的。它可以應(yīng)用于線性布局(LinearLayout)、相對(duì)布局(RelativeLayout)和幀布局(FrameLayout)等布局容器中。
layout_gravity屬性有以下常用值:
center:將View在父布局中居中顯示。
left:將View在父布局中左對(duì)齊。
right:將View在父布局中右對(duì)齊。
top:將View在父布局中頂部對(duì)齊。
bottom:將View在父布局中底部對(duì)齊。
center_vertical:將View在父布局中垂直居中顯示。
center_horizontal:將View在父布局中水平居中顯示。
start:將View在父布局中開始對(duì)齊(從左到右布局時(shí)為左對(duì)齊,從右到左布局時(shí)為右對(duì)齊)。
end:將View在父布局中結(jié)束對(duì)齊(從左到右布局時(shí)為右對(duì)齊,從右到左布局時(shí)為左對(duì)齊)。
使用時(shí),只需在View的布局文件中設(shè)置layout_gravity屬性的值即可。例如:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Button" />
</LinearLayout>
在上面的例子中,將一個(gè)Button控件設(shè)置了layout_gravity屬性為center,這樣就可以讓Button在父布局中居中顯示。