沿着屏幕宽度均匀分布的按钮

时间:2014-02-11 03:16:38

标签: android xml

我知道有几个同名的问题,但我有一个不同的问题。我已经有了它的工作,当我没有应用于按钮的颜色时,它们在屏幕的底部完美地隔开。当我应用颜色时,它们之间的间隙会填充。他们仍然合并占据屏幕,你不能告诉他们哪里停止而另一个停止。我试图应用左右填充,但这没有任何区别。这是我正在使用的。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:background="@drawable/calm"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".PiktuurMain" 

    >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        >

        <Button
            android:id="@+id/button1"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:background="@color/buttonColor"
            android:text="Button" />

        <Button
            android:id="@+id/button2"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:background="@color/buttonColor"
            android:text="Button" />

        <Button
            android:id="@+id/button3"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:background="@color/buttonColor"
            android:text="Button" />
    </LinearLayout>

</RelativeLayout>

pic

1 个答案:

答案 0 :(得分:1)

将layoutMarginLeft和layoutMarginRight放在中心按钮上大约10dp。