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) 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) または、drawable を直接比較する代わりにTAG
、背景画像に 2 つの異なる画像を割り当てて、その画像のみを比較することができます。TAG
また、背景TAG
をドローアブルの ID として設定し、以下で説明するように比較することもできます。
Object tag = bgView.getTag();
int backgroundId = R.drawable.bg_image;
if( tag != null && ((Integer)tag).intValue() == backgroundId) {
//do your work.
}