소스 검색

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

hyodong.min 7 년 전
부모
커밋
470b28d77a
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      app/src/main/java/kr/co/zumo/app/lifeplus/view/custom/MobileAuthorizationPresenter.java

+ 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());
   }