Sfoglia il codice sorgente

[회원가입][Bug] 모바일 인증 - 동의 버튼 누를 때 '인증번호 발송' 활성화 안되는 버그 수정

hyodong.min 7 anni fa
parent
commit
470b28d77a

+ 2 - 0
app/src/main/java/kr/co/zumo/app/lifeplus/view/custom/MobileAuthorizationPresenter.java

@@ -266,6 +266,7 @@ public class MobileAuthorizationPresenter {
    */
   public void onAllAgreeCheckedChanged(boolean isChecked) {
     doHideKeyBoard();
+    verifyRequestNumberButton();
   }
 
   /**
@@ -276,6 +277,7 @@ public class MobileAuthorizationPresenter {
    */
   public void onAgreeCheckedChanged(int index, boolean isChecked) {
     userBean.setAgree(index, isChecked);
+    verifyRequestNumberButton();
     Log.i("APP# MobileAuthorizationPresenter | onAgreeCheckedChanged", "|" + userBean.getAgreeList().toString());
   }