我在使用内置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
答案 0 :(得分:0)
这只会改变按钮的大小。您需要使用layout_margin
属性,如下所示:
android:layout_marginLeft=<insert value here>
答案 1 :(得分:0)
如果您使用RelativeLayout
代替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
答案 2 :(得分:0)
您所看到的空间实际上是一个分隔线。 要隐藏这些分隔线,只需添加
android:showDividers="none"
到LinearLayout
。