其他分享
首页 > 其他分享> > 您如何确定TextView的背景颜色?

您如何确定TextView的背景颜色?

作者:互联网

在我的测试中,我想确保一个View(不是ImageView)具有某种背景色.如何通过与相关视图进行交互直接做到这一点?

该视图的背景不是Drawable.它是在XML中设置的,或者是使用view.setBackgroundColor(…)设置的.

解决方法:

它将需要您进行一些重构,但是您可以使用setBackgroundDrawable()并传入ColorDrawable的实例,而不是使用setBackgroundColor().实际上,它的工作方式已经不再有效,并且ColorDrawable允许您设置其颜色,并在以后执行测试时获得它.所有View对象都响应getBackground()方法,该方法返回该实例的Drawable.

这应该对您有用,并且实际上不会增加​​任何开销,因为即使您调用setBackgroundColor,Android也需要为您创建一个Drawable

标签:testing,background-color,android
来源: https://codeday.me/bug/20191201/2083978.html