<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="5dp"/>
<solid android:color="#FFD301"/>
</shape>
在xml中给Button设置android:background="@drawable/shape" 发现不生效,颜色依然是蓝紫色
!!!!!!!!!!
解决:
在res/values/themes.xml 中:
parent="Theme.MaterialComponents.DayNight.DarkActionBar" 修改为
parent="Theme.MaterialComponents.DayNight.NoActionBar.Bridge" 即可!!
网友评论