我正在尝试将视图背景与drawable进行比较,但它对我不起作用。
View v1 = options.findViewById(i);
v1.findViewById(R.drawable.back);
Drawable d = v1.getBackground();
if(d.getConstantState() == getResources().getDrawable(R.drawable.correct_ans_back)){
v1.setBackgroundResource(R.drawable.a);
}else{
view.setBackgroundResource(R.drawable.b);
}
如何检查我在这里收到错误。
incompatible operand types Drawable.Constant State and Drawable
答案 0 :(得分:1)
1)替换
if(d.getConstantState() == getResources().getDrawable(R.drawable.correct_ans_back))
与
if(d.getConstantState() == getResources().getDrawable(R.drawable.correct_ans_back).getConstantState())
这将解决incompatible operand types Drawable.Constant State and Drawable
错误。
2)如果您无法比较两个位图,则可以使用以下方法。
public boolean compareDrawable(Drawable d1, Drawable d2){
try{
Bitmap bitmap1 = ((BitmapDrawable)d1).getBitmap();
ByteArrayOutputStream stream1 = new ByteArrayOutputStream();
bitmap1.compress(Bitmap.CompressFormat.JPEG, 100, stream1);
stream1.flush();
byte[] bitmapdata1 = stream1.toByteArray();
stream1.close();
Bitmap bitmap2 = ((BitmapDrawable)d2).getBitmap();
ByteArrayOutputStream stream2 = new ByteArrayOutputStream();
bitmap2.compress(Bitmap.CompressFormat.JPEG, 100, stream2);
stream2.flush();
byte[] bitmapdata2 = stream2.toByteArray();
stream2.close();
return bitmapdata1.equals(bitmapdata2);
}
catch (Exception e) {
// TODO: handle exception
}
return false;
}
3)或者,您可以为背景图像分配两个不同的TAG
并仅比较TAG
,而不是直接比较drawable。
您还可以将背景TAG
设置为drawable的ID,并按照以下描述进行比较,
Object tag = bgView.getTag();
int backgroundId = R.drawable.bg_image;
if( tag != null && ((Integer)tag).intValue() == backgroundId) {
//do your work.
}