1

我正在研究 android 项目,我在屏幕底部对齐 2 个按钮。我正在使用无边界主题,但我想在两个按钮之间进行拆分,以区分它们。

下面是我目前拥有的截图

我目前拥有的按钮样式

在默认对话框之类的东西上,它显示了一个浅灰色边框,如下面的两个按钮上方的屏幕截图所示,在它们之间,这是一个特定的主题还是我必须做些什么才能获得这种外观。

我追求的按钮外观

感谢您的任何帮助,您可以提供

4

2 回答 2

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"
        />
于 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 回答