2

組み込みのAndroidボタンバーのスタイルに問題があります。各ボタンに幅0、重さ1を指定した後でも、2つのボタンの間に約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

これにより、ボタンのサイズのみが変更されます。layout_margin次のように、属性を使用する必要があります。

android:layout_marginLeft=<insert value here>
于 2013-03-25T01:18:39.490 に答える
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
于 2013-03-25T01:19:53.580 に答える
0

あなたが見ている空間は実際には仕切りです。これらの仕切りを非表示にするには、追加するだけです

android:showDividers="none"

LinearLayout

于 2014-07-04T10:10:34.100 に答える