我只是想在我的按钮上添加一个Broder但它不起作用。
主xml脚本:
button_style4.xml:
按钮在应用程序中显示正常,它可以工作,因为我希望它工作只是边框没有出现... 有人发现了这个错误吗?
答案 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>