1

画面の下部に2つのボタンを配置しているAndroidプロジェクトに取り組んでいます。私はボーダーレス テーマを使用していますが、2 つのボタンを区別するために 2 つのボタンを分割したかったのです。

以下は、私が現在持っているもののスクリーンショットです

私が現在持っているボタンスタイル

デフォルトのダイアログボックスのようなものでは、下のスクリーンショットのように2つのボタンの上とその間に明るい灰色の境界線が表示されます.これは特定のテーマですか、それともこの外観を得るために私がしなければならないことがあります.

私が求めているボタンの外観の種類

あなたが提供できる助けをありがとう

4

2 に答える 2

0

幅1dipの2つのボタンの間にビューを使用してみてください

<Button 
        android:layout_width="wrap_content"
        android:layout_height="60dip"
        android:id="@+id/play"
        android:text="PLAY"
        />
    <View 
        android:id="@+id/vw"
         android:layout_width="1dip"
         android:layout_toRightOf="@+id/play"
         android:background="#000000"
        android:layout_height="60dip"/>
    <Button 
        android:layout_width="wrap_content"
        android:layout_height="60dip"
        android:layout_toRightOf="@+id/vw"
        android:text="PLAY"
        />
于 2012-09-06T11:31:35.687 に答える
0

このようなことを試してください

    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="@dimen/button_height"
    android:orientation="horizontal" >

    <Button />

    <View
        android:layout_width="1dp"
        android:layout_height="@dimen/button_height"
        android:background="@color/seperator" />

    <Button />
</LinearLayout>
于 2012-09-06T05:42:04.293 に答える