ImageVeiw의 현재 리소스 비교하기

by 조쉬 posted Aug 28, 2014
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
Drawable temp = imageview.getDrawable();
Drawable temp1 = mContext.getResouce().getDrawable(R.drawable.icon);

Bitmap tmpBitmap = ((BitmapDrawable)temp).getBitmap();
Bitmap tmpBitmap1 = ((BitmapDrawable)temp1).getBitmap();

if(tmpBitmap.equals(tmpBitmap1) {
...
}