Android 에서 두 그림 이 일치 하 는 지 비교 하기

Fragment 인터페이스 에서 두 개의 그림 을 다음 과 같이 설정 합 니 다.
 기본 설정 그림:

binding.ivArrow.setImageResource(R.drawable.icon_down);
 먼저 기본 그림 을 가 져 온 다음 에 다른 두 장의 그림 과 비교 한 다음 에 업무 논 리 를 처리 합 니 다.

Drawable.ConstantState ivArrow = binding.ivArrow.getDrawable().getCurrent().getConstantState();
        Drawable.ConstantState icon_up = getDrawable(R.drawable.icon_up).getConstantState();
        Drawable.ConstantState icon_down = getDrawable(R.drawable.icon_down).getConstantState();
        Log.e("--->ivArrow$", "$" + ivArrow);
        Log.e("--->icon_up$", "$" + icon_up);
        Log.e("--->icon_down", "$" + icon_down);
        if (ivArrow.equals(icon_up)) {
          binding.ivArrow.setImageResource(R.drawable.icon_down);
        } else if (ivArrow.equals(icon_down)) {
          binding.ivArrow.setImageResource(R.drawable.icon_up);
        }
인쇄 결 과 는 다음 과 같 습 니 다.

로 그 를 통 해 모든 그림 의 자원 이 일치 하지 않 는 이 유 를 알 수 있 습 니 다.getDrawable 을 누 르 면 원본 코드 를 볼 수 있 습 니 다.


이것 은 우리 가 원 하 는 것 이 아니 라 id 를 원 합 니 다.어떻게 해결 합 니까?Fragment 에 있 기 때문에 getActivity()를 추가 해 야 합 니 다.


설정 후 효과 보기

전체 코드 는 다음 과 같 습 니 다:

Drawable.ConstantState ivArrow = binding.ivArrow.getDrawable().getCurrent().getConstantState();
        Drawable.ConstantState icon_up = getActivity().getDrawable(R.drawable.icon_up).getConstantState();
        Drawable.ConstantState icon_down = getActivity().getDrawable(R.drawable.icon_down).getConstantState();
        Log.e("--->ivArrow$", "$" + ivArrow);
        Log.e("--->icon_up$", "$" + icon_up);
        Log.e("--->icon_down", "$" + icon_down);
        if (ivArrow.equals(icon_up)) {
          binding.ivArrow.setImageResource(R.drawable.icon_down);
        } else if (ivArrow.equals(icon_down)) {
          binding.ivArrow.setImageResource(R.drawable.icon_up);
        }
안 드 로 이 드 에서 두 개의 그림 이 일치 하 는 지 비교 하 는 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 관련 안 드 로 이 드 가 두 개의 그림 이 일치 하 는 지 비교 하 는 내용 은 예전 의 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 응원 부탁드립니다!

좋은 웹페이지 즐겨찾기