본문 바로가기

전체 글120

EditTextView에서 자동으로 폰번호 - 넣기 회원가입 입력 받을때 유용하다 binding.activityJoinPhoneEt1.addTextChangedListener(PhoneNumberFormattingTextWatcher()) ​ 해당하는 edittext가져와서 PhoneNumberFormattingTextWatcher()를 추가해준다 그럼 텍스트가 입력될때마다 자동으로 010-3333-3333으로 입력된다! 2022. 5. 13.
Bitbucket에서 갑자기 Git pull push 안될때 !!! 잘 되던 Git의 pull 과 push 갑자기 안된다 ㅠㅠ 로그인하라고 뜨는데 자꾸 비밀번호는 다르다고 나오고 아무리 웹으로 로그인을 해봐도 해결되지 않았다 .... ​ 1. Bitbucket 에 접속한다. 왼쪽 하단에 얼굴 사진 클릭 2. 앱 비밀번호 생성 하기를 들어가서 앱 비밀번호를 새로 하나 발급받는다. 3. 앱 비밀번호 생성하기 누르면 이러한 화면이 나오고 풀 리퀘스트 읽기 쓰기 모두 체크 후 생성을 누른다 ​​ 그럼 키값이 나오는데 저장 잘 해놔야된다 한번 꺼진 키값은 돌아오지 않는다 ... 무조건 메모장 어디든 필수 저장 !! 하나의 키값으로 여러군데서 pull push 할 수 있다 . 그것도 모르고 3번정도 만든것 같다 ㅎㅎ ​ 난 안드로이드 스튜디오에서 이 키값을 비밀번호 칸에 치니깐 잘.. 2022. 5. 13.
ConstraintLayout 버튼 Front 적용이 안될때 | bringtoFront 안될때 https://stackoverflow.com/questions/53344413/bring-to-button-front-while-having-two-constraintlayout Bring to Button front while having two ConstraintLayout I'm trying to implement the following design on Android. I know that to have the button at that position I should have two constraint layout; one for whole change password form and one for change stackoverflow.com ConstraintLayout에서 분명 xml 코.. 2022. 5. 13.
TextInputLayout | TextInputEditText 사용해보기 구글 공식 레퍼런스 문서 확인! https://developer.android.com/reference/com/google/android/material/textfield/TextInputEditText TextInputEditText | Android Developers developer.android.com 1. TextInputEditText를 사용하기 위해서는 gradle(module)에 material이 추가되있어야한다. implementation 'com.google.android.material:material:1.6.0' 2. xml에 다음과 같이 추가한다. 3. 기본 FilledBox 테마가 적용된 TextInputEditText 완성 두가지 스타일과 기타 옵션으로 이것저것 추가가 가능하다 2022. 5. 13.
Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8. Error An exception occurred applying plugin request [id: 'com.android.application'] > Failed to apply plugin 'com.android.internal.application'. > Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8. You can try some of the following options: - changing the IDE settings. - changing the JAVA_HOME environment variable. - changing `org.gradle.java.home` in `gradle.properties`... 2022. 5. 13.
Android CircleProgressBar 라이브러리 1. 사용법 Gradle dependencies { compile 'com.dinuscxj:circleprogressbar:1.3.6' } xml 더 자세한 사용방법은 https://github.com/dinuscxj/CircleProgressBar 2022. 4. 12.