-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
경북대 Android_류지원_1주차_과제 #13
Open
akuby21
wants to merge
58
commits into
kakao-tech-campus-2nd-step2:akuby21
Choose a base branch
from
akuby21:akuby21
base: akuby21
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
과제 진행 요구사항에 따라 구현할 기능 목록 및 기능 요구사항 명시
연락처 입력 폼 drawable 생성
화면 상단에 위치할 메인 이미지 drawable 구현
이름, 전화번호, 메일 입력 폼 구현
전화번호에 해당하는 입력 폼의 입력 방식을 `phone`으로 설정함
필요없는 코드 제거
연락처 정보 입력란의 더보기 기능 추가 더보기 클릭 시 입력란의 LinearLayout height를 변경한다. 더보기 뷰는 INVISIBLE 처리함
wrap_content로 지정해둔 각각 연락처 입력란을 크기를 지정해둔 값으로 변경
뷰 확장시의 메서드 분리 및 일반화
생일 입력기능 구현. 생일란 클릭시 startCalenderDialog 호출, datePickerDialog 생성 및 문자열 파싱 후 뷰 반영
입력 중 키보드에 가려지는 뷰 부분 스크롤하여 보이게 수정 메인 root view를 constraintLayout -> ScrollView로 변경 및 manifest의 windowsSoftInputMode 설정
readme수정
입력 중 외부 터치시에 키보드 내려가는 기능 구현 InputMethodManager의 hideSoftInputFromWindow() 메서드를 통해 키보드 내리는 기능 이용가능 터치 감지시 발생하는 콜백인 dispatchTouchEvent를 재정의하여 해당 메서드 삽입
성별 선택란을 라디오 그룹으로 생성
이후 과제에서 사용할 데이터 클래스인 Contact와 그 안에 들어가는 Gender enum 생성
편의성을 위하여 dispatchTouchEvent시에 키보드를 접는 기능을 추가 하였지만 과제와의 유사성을 위해 주석처리
스크롤시 저장, 취소 버튼이 원활하게 보이기위해 root view를 constraintLayout으로 변경 저장,취소를 가지고 있는 completeBar를 하단에 고정
실수로인한 코드 삭제 복원
하단의 취소, 저장 버튼 클릭시 ripple 효과가 나도록 구현
등록 취소를 위한 cancelContact() 및 토스트 메시지 출력을 위한 showToast() 구현 cancelContact() 내에는 이후 등록 취소에 해당하는 플로우 구현예정
연락처의 유효성을 검증하는 플로우 구현 isValidContact()에 필수 값을 요구하는 뷰를 넣어 유효성을 검증한다. 유효성 검증 후 submitContact() 호출. 실제 등록하는 플로우는 이후 구현예정
필수 값이 비어있는 경우 해당 editText로 focus 이동 및 키보드 노출하는 기능 구현
생일 선택시 기본 값이 2000년 1월 1일로 설정되도록 변경
datePicker 날짜 초기화 메서드 분리
입력폼에 중복되는 옵션 값을 스타일로 추출하여 보일러플레이트 감소
입력폼 더보기 이전, 이후 높이 수정
코드 정렬
xml 기본 값인 activity_main -> activity_contact_add 로 이름 변경
필수 값인 이름과 전화번호만 not nullable로 되도록 수정
현재 입력된 성별을 확인하는 메서드인 getGender() 구현
저장 버튼 누를 시 새로운 Contact 인스턴스 생성. 생성된 contact는 repository에 등록된다.
cancelContact() -> cancelAddContact()
현재 등록된 연락처들의 목록을 보여주는 ContactListActivity 구현
연락처 추가 화면을 호출할 때 반환 값을 요구. 만약 정상적으로 연락처가 추가 되었다면 RESULT_OK를 받아 recyclerView를 업데이트 해준다
뷰홀더 생성시에 onClickListner를 달아주도록 수정
저장한 연락처의 상세한 정보를 볼 수 있는 ContactDetailActivity 생성 ContactListActivity에서 선택 시 repository내 contact의 인덱스를 보내어 액티비티에서 식별한다
기본 액티비티로 지정되어 있었던 ContactAddActivity에 대한 Manifest값 수정
패키지 구조를 모델, 레포지토리, 뷰로 나누어 해당하는 파일들을 분류
숫자 사이즈를 표시하는 dimen 값 생성 및 반영
연락처 작성 중 성별 값 입력 여부 판단이 반대로 되던 버그 수정
연락처 상세 페이지에서 ENUM에 따른 성별을 한국어로 표시하게 변경
ContactRepository에 파스칼 케이스 적용
acious
approved these changes
Jun 30, 2024
app/src/main/java/campus/tech/kakao/contacts/Repository/ContactRepository.kt
Show resolved
Hide resolved
app/src/main/java/campus/tech/kakao/contacts/View/Adapter/RecyclerAdapter.kt
Outdated
Show resolved
Hide resolved
app/src/main/java/campus/tech/kakao/contacts/View/Adapter/RecyclerAdapter.kt
Show resolved
Hide resolved
app/src/main/java/campus/tech/kakao/contacts/View/Adapter/RecyclerAdapter.kt
Outdated
Show resolved
Hide resolved
app/src/main/java/campus/tech/kakao/contacts/View/ContactAddActivity.kt
Outdated
Show resolved
Hide resolved
app/src/main/java/campus/tech/kakao/contacts/View/ContactAddActivity.kt
Outdated
Show resolved
Hide resolved
app/src/main/java/campus/tech/kakao/contacts/View/ContactAddActivity.kt
Outdated
Show resolved
Hide resolved
app/src/main/java/campus/tech/kakao/contacts/View/ContactListActivity.kt
Outdated
Show resolved
Hide resolved
acious
reviewed
Jun 30, 2024
app/src/main/java/campus/tech/kakao/contacts/View/ContactDetailActivity.kt
Outdated
Show resolved
Hide resolved
acious
reviewed
Jun 30, 2024
app/src/main/java/campus/tech/kakao/contacts/View/ContactDetailActivity.kt
Outdated
Show resolved
Hide resolved
Contact 내의 bDay의 타입을 Date로 변경. 형식 처리를 위한 DateFormatter 생성 후 파싱 필요시 해당 메서드 사용
ViewHolder의 생성을 위해 받아온 context 파라미터를 onCreateViewHolder의 parent를 이용하여 받아오는 식으로 변경
intent에 인덱스를 삽입할 때 이용할 key값을 Const 오브젝트 파일로 분리하여 사용하도록 변경
각 뷰를 불러오는 시점을 onCreate로 옮겨 한 번만 실행되도록 변경. 각 뷰는 모두 private으로 설정
ContactAddActivity내의 불필요하게 public으로 선언된 변수들 private으로 변경
onCreate 메서드 맨 위로 옮김
Constraint -> Linear -> Relative -> View로 이어지던 구조를 Contraint -> Relative -> View로 수정하여 뷰 계층 축소
감사합니다! 수정 사항 반영하여 다시 커밋 올렸습니다. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
1단계 코드
a1d06c7 까지의 커밋이 1단계 완성 코드입니다!
코드 작성하며 어려웠던 점
중점적으로 리뷰해주셨으면 하는 부분
실행 화면
연락처 생성 화면
연락처 목록 화면
연락처 상세 화면
(성별이 MALE, FEMALE로 나오는 현상은 이후 한국어로 나오도록 수정하였습니다(#9682493)