Conversation
Closed
1 task
yunjaena
reviewed
Nov 18, 2025
| * 키보드가 내려갈 때는 네비게이션 바 높이만큼 패딩 조정 | ||
| */ | ||
| private fun setupKeyboardAdjustments() { | ||
| ViewCompat.setOnApplyWindowInsetsListener(binding.scrollView) { v, insets -> |
Contributor
Author
Contributor
|
Systembars에서는 어떤 것들이 포함되어있나요? |
Contributor
Author
StatusBar랑 Navigation Bar가 포함되어 있는걸로 알고있습니다. |
# Conflicts: # feature/chatting/src/main/java/com/project200/feature/chatting/chattingRoom/ChattingRoomFragment.kt
This file contains hidden or 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
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.
#️⃣연관된 이슈
#386
📝작업 내용
viewModel에서 savedStateHandle로 가져오던 recordId를 navArgs로 가져오도록 수정했습니다. 0f061d4 de1ae98
onResume에서 조회 api를 호출하던 로직을 리팩토링 했습니다.
운동 기록 조회 화면에 스켈레톤 로딩을 추가했습니다. 6e16395
스크린샷 (선택)
2025-11-18.18.36.38.mov
💬리뷰 요구사항(선택)
조회 시에 로딩시간이 매우 짧으면 스켈레톤 ui가 오히려 그냥 깜빡이는 것처럼 보이기도 합니다.
그래서 스켈레톤 ui를 일관적으로 보여줄 수 있도록 최소 로딩 시간으로 delay(300ms)를 넣었는데, 어떤게 좋은 방법인지 고민입니다.