IT

Android에서 두 드로어 블 비교

lottoking 2020. 9. 13. 10:54
반응형

Android에서 두 드로어 블 비교


두 드로어 블을 비교하는 방법, 이렇게하고 성공하지

public void MyClick(View view)
{
 Drawable fDraw = view.getBackground();
 Drawable sDraw = getResources().getDrawable(R.drawable.twt_hover);

  if(fDraw.equals(sDraw))
  {
   //Not coming
  }
}

업데이트 https://stackoverflow.com/a/36373569/1835650

getConstantState ()가 잘 작동하지 않습니다.

비교하는 또 다른 방법이 있습니다.

mRememberPwd.getDrawable().getConstantState().equals
            (getResources().getDrawable(R.drawable.login_checked).getConstantState());

mRemeberPwdImageView본 실시 예에서. 사용하는를 TextView경우 getBackground().getConstantState대신 사용하십시오.


getConstantState()의존으로 의존 하면 위음성 이 보관 수 있습니다 .

내가 취한 접근 방식은 첫 번째 인스턴스에서 ConstantState를 비교하려고 시도하지만 해당 검사가 실패하면 Bitmap 비교로 돌아갑니다.

이것은 모든 경우 (리소스가 아닌 이미지 포함)에서 작동하지만 메모리가 부족한 점에 유의하십시오.

public static boolean areDrawablesIdentical(Drawable drawableA, Drawable drawableB) {
    Drawable.ConstantState stateA = drawableA.getConstantState();
    Drawable.ConstantState stateB = drawableB.getConstantState();
    // If the constant state is identical, they are using the same drawable resource.
    // However, the opposite is not necessarily true.
    return (stateA != null && stateB != null && stateA.equals(stateB))
            || getBitmap(drawableA).sameAs(getBitmap(drawableB));
}

public static Bitmap getBitmap(Drawable drawable) {
    Bitmap result;
    if (drawable instanceof BitmapDrawable) {
        result = ((BitmapDrawable) drawable).getBitmap();
    } else {
        int width = drawable.getIntrinsicWidth();
        int height = drawable.getIntrinsicHeight();
        // Some drawables have no intrinsic width - e.g. solid colours.
        if (width <= 0) {
            width = 1;
        }
        if (height <= 0) {
            height = 1;
        }

        result = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
        Canvas canvas = new Canvas(result);
        drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
        drawable.draw(canvas);
    }
    return result;
}

내 질문은 두 개의 드로어 블을 비교하는 것이 두 드로어 블을 직접 비교하는 방법을 시도했지만 내 솔루션의 경우 드로어 블을 비트 맵으로 변경 한 다음 두 개의 비트 맵을 비교하면 작동합니다.

Bitmap bitmap = ((BitmapDrawable)fDraw).getBitmap();
Bitmap bitmap2 = ((BitmapDrawable)sDraw).getBitmap();

if(bitmap == bitmap2)
    {
        //Code blcok
    }

SDK 21 이상용

이 SDK는 -21에서 작동합니다.

mRememberPwd.getDrawable().getConstantState().equals
        (getResources().getDrawable(R.drawable.login_checked).getConstantState())

SDK +21 Android 5. 드로어 블 ID를 태그가있는 imageview로 설정

img.setTag(R.drawable.xxx);

이렇게 비교해

if ((Integer) img.getTag() == R.drawable.xxx)
{
....your code
}

이 솔루션은의 drawableID를의 imageviewID와 비교하려는 사람을위한 것 입니다 drawable.xxx.


Android 5 용 솔루션 :

 if(image.getDrawable().getConstantState().equals(image.getContext().getDrawable(R.drawable.something).getConstantState()))

아마도 다음과 같이 시도하십시오.

public void MyClick(View view)
{
 Drawable fDraw = view.getBackground();
 Drawable sDraw = getResources().getDrawable(R.drawable.twt_hover);

  if(fDraw.hashCode() == sDraw.hashCode())
  {
   //Not coming
  }
}

또는 두 개의 드로어 블 인수를 취하고 부울을 반환하는 방법을 준비합니다. 이 방법에서 드로어 블을 바이트로 변환하고 사용할 수 있습니다.

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;
}


getDrawable (int)는 더 이상 사용되지 않습니다. 사용 getDrawable (문맥, R.drawable.yourimageid)

두 배경을 비교 비용

Boolean Condition1=v.getBackground().getConstantState().equals(
ContextCompat.getDrawable(getApplicationContext(),R.drawable.***).getConstantState());

좋아, 나는 이것에 대한 궁극적 인 해결책을 찾은 것 같습니다. AppCompat 및 친구들 때문에 제공된 드로어 블이 때때로 다른 형태로 부풀려서 충분하지 않습니다 getResources().getBitmap(R.drawable.my_awesome_drawable).

따라서 뷰에서 제공하는 것과 동일한 유형 및 형식의 드로어 블 인스턴스를 얻으려면 다음을 수행 할 수 있습니다.

public static Drawable drawableFrom(View view, @DrawableRes int drawableId) {
    Context context = view.getContext();
    try {
        View dummyView = view.getClass().getConstructor(Context.class).newInstance(context);
        dummyView.setBackgroundResource(drawableId);
        return dummyView.getBackground();
    } catch (Exception e) {
      return ResourcesCompat.getDrawable(context.getResources(), drawableId, null);
    }
}

이것은 테스트를 할 때 유용합니다. 그러나 프로덕션에서는이 작업을 권장하지 않습니다. 필요한 경우 너무 많은 리플렉션을 사용하지 않도록 추가 캐싱이 바람직합니다.

Expresso 테스트의 경우 이것을 아주 잘 사용할 수 있습니다.

onView(withDrawable(R.drawable.awesome_drawable))
  .check(matches(isDisplayed()));

또는

onView(withId(R.id.view_id))
  .check(matches(withDrawable(R.drawable.awesome_drawable)));

이 도우미 클래스를 선언하기 전에 :

public class CustomMatchers {

  public static Matcher<View> withDrawable(@DrawableRes final int drawableId) {
     return new DrawableViewMatcher(drawableId);
  }
  private static class DrawableViewMatcher extends TypeSafeMatcher<View> {

     private final int expectedId;
     private String resourceName;

     private enum DrawableExtractionPolicy {
        IMAGE_VIEW {
          @Override
          Drawable findDrawable(View view) {
             return view instanceof ImageView ? ((ImageView) view).getDrawable() : null;
          }
        },
        TEXT_VIEW_COMPOUND {
          @Override
          Drawable findDrawable(View view) {
             return view instanceof TextView ? findFirstCompoundDrawable((TextView) view) : null;
          }
        },
        BACKGROUND {
          @Override
          Drawable findDrawable(View view) {
             return view.getBackground();
          }
        };

        @Nullable
        private static Drawable findFirstCompoundDrawable(TextView view) {
          for (Drawable drawable : view.getCompoundDrawables()) {
             if (drawable != null) {
                return drawable;
             }
          }
          return null;
        }

        abstract Drawable findDrawable(View view);

     }

     private DrawableViewMatcher(@DrawableRes int expectedId) {
        this.expectedId = expectedId;
     }

     @Override
     protected boolean matchesSafely(View view) {
        resourceName = resources(view).getResourceName(expectedId);
        return haveSameState(actualDrawable(view), expectedDrawable(view));
     }

     private boolean haveSameState(Drawable actual, Drawable expected) {
        return actual != null && expected != null && areEqual(expected.getConstantState(), actual.getConstantState());
     }

     private Drawable actualDrawable(View view) {
        for (DrawableExtractionPolicy policy : DrawableExtractionPolicy.values()) {
          Drawable drawable = policy.findDrawable(view);
          if (drawable != null) {
             return drawable;
          }
        }
        return null;
     }

     private boolean areEqual(Object first, Object second) {
        return first == null ? second == null : first.equals(second);
     }

     private Drawable expectedDrawable(View view) {
        return drawableFrom(view, expectedId);
     }

     private static Drawable drawableFrom(View view, @DrawableRes int drawableId) {
        Context context = view.getContext();
        try {
          View dummyView = view.getClass().getConstructor(Context.class).newInstance(context);
          dummyView.setBackgroundResource(drawableId);
          return dummyView.getBackground();
        } catch (Exception e) {
          return ResourcesCompat.getDrawable(context.getResources(), drawableId, null);
        }
     }

     @NonNull
     private Resources resources(View view) {
        return view.getContext().getResources();
     }

     @Override
     public void describeTo(Description description) {
        description.appendText("with drawable from resource id: ");
        description.appendValue(expectedId);
        if (resourceName != null) {
          description.appendValueList("[", "", "]", resourceName);
        }
     }
  }

}

비교를 위해 getTag () 및 setTag () 사용


비슷한 주제에 대해 이미 대답했습니다 . ImageView에서 드로어 블의 ID를 가져옵니다 . 이 접근 방식은 사용자 정의에서 지정된 리소스 ID로 뷰에 태그를 지정하는 것을 기반으로합니다 LayoutInflater. 전체 프로세스는 간단한 라이브러리 TagView에 의해 자동화됩니다 .

결과적으로 ID만으로 두 드로어 블을 비교할 수 있습니다.

TagViewUtils.getTag(view, ViewTag.VIEW_BACKGROUND.id) == R.drawable.twt_hover

두 드로어 블을 직접 비교하려면 다음 코드를 사용하십시오.

드로어 블 fDraw = getResources (). getDrawable (R.drawable.twt_hover);

드로어 블 sDraw = getResources (). getDrawable (R.drawable.twt_hover);

if (fDraw.getConstantState().equals(sDraw.getConstantState())) {
    //write your code.
} else {
    //write your code.
}

당신이 사용하는 경우 equals()방법이 내용을 비교하는 데 사용됩니다. ==두 개체를 비교해 보아야 합니다.

public void MyClick(View view)
{
 Drawable fDraw = view.getBackground();
 Drawable sDraw = getResources().getDrawable(R.drawable.twt_hover);

  if( fDraw == sDraw )
  {
   // Coming
  }
}

참고 URL : https://stackoverflow.com/questions/9125229/comparing-two-drawables-in-android

반응형