在新的AppCompat库中,我们可以这样为按钮着色:
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/follow"
android:id="@+id/button_follow"
android:backgroundTint="@color/blue_100"
/>
如何在我的代码中以编程方式设置按钮的色调?
我基本上是试图实现基于一些用户输入的按钮的条件着色。
根据文档,android的相关方法:backgroundTint是setBackgroundTintList(ColorStateList list)
更新
按照此链接了解如何创建颜色状态列表资源。
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:color="#your_color_here" />
</selector>
然后使用
setBackgroundTintList(contextInstance.getResources().getColorStateList(R.color.your_xml_name));
哪里contextInstance是一个Context的实例
使用AppCompart
btnTag.setSupportButtonTintList(ContextCompat.getColorStateList(Activity.this, R.color.colorPrimary));
你可以用
button.setBackgroundTintList(ColorStateList.valueOf(resources.getColor(R.id.blue_100)));
但是我建议你使用昨天刚刚发布的支持库drawable tinting:
Drawable drawable = ...;
// Wrap the drawable so that future tinting calls work
// on pre-v21 devices. Always use the returned drawable.
drawable = DrawableCompat.wrap(drawable);
// We can now set a tint
DrawableCompat.setTint(drawable, Color.RED);
// ...or a tint list
DrawableCompat.setTintList(drawable, myColorStateList);
// ...and a different tint mode
DrawableCompat.setTintMode(drawable, PorterDuff.Mode.SRC_OVER);
你可以在这篇博客文章中找到更多信息(参见“可绘制着色”部分)。
我也遇到过类似的问题。我希望为一个基于颜色(int)值的视图着色一个复杂的可绘制背景。
我成功地使用了代码:
ColorStateList csl = new ColorStateList(new int[][]{{}}, new int[]{color});
textView.setBackgroundTintList(csl);
其中color是一个int值,表示所需的颜色。
这表示简单的xml ColorStateList:
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:color="color here"/>
</selector>
希望这能有所帮助。
如果你正在使用Kotlin和Material Design,你可以像这样改变MaterialButton的颜色:
myButton.background.setTintList(ContextCompat.getColorStateList(context, R.color.myColor))
你可以通过为你的MaterialButton创建一个扩展函数来更好地改进它,以使你的代码更易于阅读,你的编码更方便:
fun MaterialButton.changeColor(color: Int) {
this.background.setTintList(ContextCompat.getColorStateList(context, color))
}
然后,你可以像这样在任何地方使用你的函数:
myButton.changeColor(R.color.myColor)
这很容易在材质设计库的新材质按钮中处理,首先,添加依赖项:
implementation 'com.google.android.material:material:1.1.0-alpha07'
然后在你的XML中,使用这个按钮:
<com.google.android.material.button.MaterialButton
android:id="@+id/accept"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/i_accept"
android:textSize="18sp"
app:backgroundTint="@color/grayBackground_500" />
当你想改变颜色时,这是Kotlin中的代码,它没有被弃用,可以在Android 21之前使用:
accept.backgroundTintList = ColorStateList.valueOf(ResourcesCompat.getColor(resources,
R.color.colorPrimary, theme))