无法使用XML为Button添加边框

时间:2018-05-09 12:08:19

标签: android xml android-studio

我只是想在我的按钮上添加一个Broder但它不起作用。

主xml脚本:

enter image description here

button_style4.xml:

enter image description here

按钮在应用程序中显示正常,它可以工作,因为我希望它工作只是边框没有出现... 有人发现了这个错误吗?

1 个答案:

答案 0 :(得分:0)

您可以使用以下内容添加边框

   <shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="#00000000" />
    <stroke android:width="2.5dp"
        android:color="#FFFFFF" />
    <corners
        android:radius="5dp"/>
  </shape>