2

我在使用内置的 Android 按钮栏样式时遇到了一些问题。在为我的每个按钮提供 0 的宽度和 1 的重量之后,两个按钮之间仍然存在大约 1px 的间隙(见图)。

消除这种差距的最佳方法是什么?为什么它甚至在那里开始?

<LinearLayout
    android:id="@+id/button_bar"
    style="?android:attr/buttonBarStyle"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignRight="@+id/details_scroll_view"
    android:paddin="0dp" >

    <Button
        android:id="@+id/button1"
        style="?android:attr/buttonBarButtonStyle"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:background="@drawable/button_dark_blue"
        android:text="button1"
        android:textColor="@color/text_color" />

    <Button
        android:id="@+id/button2"
        style="?android:attr/buttonBarButtonStyle"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:background="@drawable/button_light_blue"
        android:text="button2"
        android:textColor="@color/text_color" />
</LinearLayout>

[按钮栏][1] http://i.stack.imgur.com/9Kwf4.png

4

3 回答 3

0

你看到的空间实际上是一个分隔线。要隐藏这些分隔线,只需添加

android:showDividers="none"

LinearLayout.

于 2014-07-04T10:10:34.100 回答
0

这只会改变按钮的大小。您需要使用该layout_margin属性,如下所示:

android:layout_marginLeft=<insert value here>
于 2013-03-25T01:18:39.490 回答
0

如果你使用 aRelativeLayout而不是LinearLayout那么你可以使用类似的东西

 <Button
        android:id="@+id/button2"
        style="?android:attr/buttonBarButtonStyle"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:background="@drawable/button_light_blue"
        android:text="button2"
        android:textColor="@color/text_color"
        android:layout_toRightOf="@+id/button1" />  //this will put the left edge of this button at the right edge of button1
于 2013-03-25T01:19:53.580 回答