Android:如何在中心放置两个全宽按钮?

时间:2013-05-31 02:34:26

标签: android android-layout

<Button
        android:id="@+id/btnSetDate"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_weight="1.0"
        android:text="Set Date" />

 <Button
    android:id="@+id/btnSetTime"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_centerVertical="true"
    android:layout_weight="1.0"
    android:text="Set Time" />

如何将两个按钮居中,如图像?

enter image description here

2 个答案:

答案 0 :(得分:3)

简单!我们走了......

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:orientation="vertical" >

        <Button
            android:id="@+id/btnSetDate"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:text="Set Date" />

        <Button
            android:id="@+id/btnSetTime"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:text="Set Time" />

    </LinearLayout>

</RelativeLayout>

答案 1 :(得分:2)

只需将按钮包装到LinearLyaout等内容中,使用android:gravity =“center_vertical”就行了。

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:orientation="vertical" >

<Button
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="btn1" >
</Button>

<Button
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="btn2" >
</Button>

</LinearLayout>