初始在button中使用android:background="@color/grey",但是毫无作用,于是又去读android:background语法,但是并没有发现问题,于是找到这篇文章https://www.codenong.com/32471009/
使用android:backgroundTint="@color/grey"成功将文字背景色加深。
(“@color/grey”直接使用#cccccc就行,因为我在colors.xml文件中设置了一下,所以就直接引用了)
android:background="@color/grey"
android:backgroundTint="@color/grey"
<color name="grey">#cccccc</color>