猿问

设置按钮背景和颜色

我想为同一个按钮设置背景和颜色。我正在使用setbackgroundResourcesetBackgroundColor这样做......但是它只会改变背景或颜色而不是两者。

有什么办法可以改变按钮背景和背景颜色吗?


慕码人2483693
浏览 135回答 2
2回答

四季花海

如果你想改变背景图像的颜色即你设置使用setBackgroundResource然后使用setBackgroundTintList(ColorStateList.valueOf(ContextCompat.getColor(context, R.color.black)));

largeQ

假设您要将可绘制对象设置为前景并将颜色设置为背景,您将需要一个 ImageView。您可以直接从 xml 中设置它:<ImageView&nbsp; &nbsp; android:layout_width="wrap_content"&nbsp; &nbsp; android:layout_height="wrap_content"&nbsp; &nbsp; android:background="@color/black"&nbsp; &nbsp; android:src="@drawable/my_awesome_drawable" />或者像这样以编程方式:imageView.background = resources.getDrawable(R.color.black)imageView.setImageResource(R.drawable.my_awesome_drawable)
随时随地看视频慕课网APP

相关分类

Java
我要回答