坏消息
就像BoD所说的那样,在Lollipop 5.0(API级别21)中为Button的背景着色是没有意义的。
好消息
Lollipop 5.1(API级别22)似乎已通过更改btn_mtrl_default_shape.xml(以及其他文件)来解决此问题:https ://android.googlesource.com/platform/frameworks/base/+/6dfa60f33ca6018959ebff1efde82db7d2aed1e3%5E!/#F0
好消息
新的支持库(版本22.1+)为许多组件(包括AppCompatButton)添加了向后兼容的着色支持!
不幸的是,该android:backgroundTint
属性仍然无法正常工作(也许我做错了什么)-因此您必须使用设置ColorStateList
in代码setSupportBackgroundTintList()
。android:backgroundTint
将来能获得支持真是太好了。更新:Marcio Granzotto评论说该功能app:backgroundTint
可用于AppCompatButton!请注意,它是app:
,不是android:
,因为它在应用程序/库中。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<AppCompatButton
android:id="@+id/mybutton"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="Testing, testing"
app:backgroundTint="#ff00ff"/>
</LinearLayout>
如果您让活动继承自AppCompatButton
,则该活动会自动为而不是正常添加。Button
AppCompatActivity
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
AppCompatButton v = (AppCompatButton) findViewById(R.id.mybutton);
ColorStateList csl = new ColorStateList(new int[][]{new int[0]}, new int[]{0xffffcc00});
v.setSupportBackgroundTintList(csl);
}
}
您当然应该ColorStateList
从颜色资源中获取,但是我很懒,所以...
哦,别忘了将您的应用程序主题作为Theme.AppCompat
主题之一,否则compat视图将非常非常难过...;)
这适用于2.3.7(姜饼MR1)和5.0(棒棒糖“经典”)。