2

ビューの背景をドローアブルと比較しようとしていますが、うまくいきません。

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
4

1 に答える 1

2

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.
}
于 2013-01-16T07:11:21.687 に答える