在android上分离无边框按钮

时间:2012-09-05 21:07:21

标签: android button

我正在开发android项目,我在屏幕底部对齐2个按钮。我正在使用无边框主题,但我想在两个按钮之间进行分割,两个区分它们。

以下是我目前所拥有的屏幕截图

Button style I currently have

在默认对话框之类的东西上,它显示了一个浅灰色的边框,如下面两个按钮上方的截图,在它们之间,这是一个特殊的主题,还是我需要做些什么来获得这个外观。

Kind of button appearance I am after

感谢您提供的任何帮助

2 个答案:

答案 0 :(得分: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>

答案 1 :(得分:0)

尝试使用宽度为1dip的两个按钮之间的视图

<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"
        />