我尝试删除Andorid中的按钮的木板。
我知道在设计中我可以通过:style ="?android:atter/borderlessbuttonStyle"
但是我如何在Java代码中更改它,或者在style.xml中是否有灵魂?
尝试此
<Button
android:background="@drawable/shape"
android:layout_width="match_parent"
android:layout_height="wrap_parent" />
这是shape.xml文件代码:
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke android:width="1dp" android:color="#1B5E20" />
<corners android:radius="2dp"/>
<padding android:left="0dip" android:top="0dip" android:right="0dip" android:bottom="0dip" />
</shape>
只需像您想要的那样改变形状颜色属性。