我正在研究 android 项目,我在屏幕底部对齐 2 个按钮。我正在使用无边界主题,但我想在两个按钮之间进行拆分,以区分它们。
下面是我目前拥有的截图
在默认对话框之类的东西上,它显示了一个浅灰色边框,如下面的两个按钮上方的屏幕截图所示,在它们之间,这是一个特定的主题还是我必须做些什么才能获得这种外观。
感谢您的任何帮助,您可以提供
尝试在宽度为 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"
/>
尝试这样的事情
<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>