如何获得按钮的背景颜色



如何获得按钮的背景色?我试过以下几种:

public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button btn1 = findViewById(R.id.button);
btn1.setBackgroundColor(getResources().getColor(R.color.red));
//color red is added to colors.xml <color name="red">#FF0000</color>
btn1.setOnClickListener(v -> {
ColorDrawable btnColor = (ColorDrawable) btn1.getBackground();
int clr = btnColor.getColor();
if (clr == getResources().getColor(R.color.red)) {
String line = "it's red";
btn1.setText(line);
}
});
}
}

当我点击按钮时,应用程序关闭,我得到这个

java.lang.ClassCastException: android.graphics.drawable.RippleDrawable cannot be cast to android.graphics.drawable.ColorDrawable

有人能解释我做错了什么吗?

由于您使用的是MaterialComponents主题,因此您的Button在运行时会被MaterialButton替换。

使用setBackgroundTintList而不是setBackgroundColor,并使用getBackgroundTintList()检索ColorStateList

类似于:

MaterialButton button = findViewById(R.id.button);
button.setBackgroundTintList(ColorStateList.valueOf(ContextCompat.getColor(this, R.color.red600)));
ColorStateList colorStateList = button.getBackgroundTintList();
int defaultColor = colorStateList.getColorForState(
new int[] { android.R.attr.state_enabled},0);

您可以将其作为可绘制文件:

Button mButton = (Button) findViewById(R.id.button);
Drawable buttonBackground = mButton.getBackground();

如果是一种颜色,你可以这样做:

ColorDrawable btnColor = (ColorDrawable) button.getBackground();

获取颜色的资源id:

Int color = btnColor.getColor();

然后将其与您的颜色进行比较:

if (color == R.color.green) {
log("color is green");
}
ColorDrawable buttonColor = (ColorDrawable) button.getBackground();
int colorId = buttonColor.getColor();
if (colorID == R.color.green) {
log("color is green");
}

使用以上内容,您可以找到按钮颜色。

相关内容

  • 没有找到相关文章

最新更新