Skip to content
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

[Design/#4] 온보딩 질문 화면 UI 구현 #5

Merged
merged 13 commits into from
Jul 5, 2023
Merged

Conversation

ss99x2002
Copy link
Member

@ss99x2002 ss99x2002 commented Jul 4, 2023

🎀 Related Issues

close #4

🤔 What Did You Do

  • QuestActivity 구현
  • Question Fragment 구현
  • NotifyTimeActivity 구현

📸 Screenshot

_2023_07_04_17_51_45_770.mp4

⁉️ etc

  • QuestActivity에 질문이 여러개 생길 경우를 고려했을때, 한 화면에서 진행되었으면 좋겠다는 의견을 바탕으로 질문만 담긴 Sub Fragment를 Activity에 넣어서 디자인했습니다. 기능을 추가할 때 질문의 수가 적다면 각 Fragment를 만들어서 changeFragment를 활용해도 괜찮을거같고, 아니면 같은 화면에서 받아오는 질문만 다르게 재활용해도 괜찮을거같습니다.

  • 여기서 의문이 만약에 사용자가 질문에 답하고 이전 답변으로 돌아가고싶다면? 어떻게 해야하는지에 대한 의문이 듭니다. 한화면에서 진행하기 때문에 app bar의 뒤로가기는 아예 이전 activity로 돌아간다고 생각이 들어서요! + 다음으로 버튼도 한 activity에 해당하는것인지에 대한 의문이 드네요.

  • 위 말한 사항이 가장 고민을 한 부분이라 봐주시면 감사할거같습니다!

  • 그 외 프로그레스바나 버튼 등 기능적으로 바뀔때 디자인은 모두 적용해두었습니다.

@ss99x2002 ss99x2002 requested a review from yeoncheong July 4, 2023 09:04
@ss99x2002 ss99x2002 self-assigned this Jul 4, 2023
@ss99x2002 ss99x2002 added design UI 추가 및 수정 서현 labels Jul 4, 2023
Copy link
Contributor

@yeoncheong yeoncheong left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수고하셨습니다!
버튼 디자인이 겹쳐서 제거 머지할 때 약간 충돌날 것 같은데 둘 다 머지하고 회의 후 합쳐야 할 것 같습니다.
같은 화면에서 질문의 내용만 바뀌기 때문에 Fragment를 활용하는 것도 좋은 방법 같습니다.
etc에 작성해주신 사항 중 질문에 답하고 이전으로 돌아가고 싶을 경우를 말씀해주셨는데 개인적인 의견으로는 값을 입력하는 것이 아닌 선택지를 입력하는 설문지 형식의 질문은 보통 뒤로가기 기능이 없기 때문에 (ex. mbti 검사...) 뒤로가기 기능이 없는게 좋다고 판단됩니다.
이 부분에 대해서는 기획 측에게도 한번 물어봐야 할 것 같습니다.

Comment on lines +2 to +7
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:color="@color/white">
</item>
<item android:state_checked="false" android:color="@color/black">
</item>
</selector>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

저도 버튼을 만들어야해서 selector랑 color랑 그 외 것들을 추가해두었는데 겹치는 것 같네요. 둘 다 머지한 후에 한 명의 것으로 합쳐야 할 것 같습니다!

android:layout_height="wrap_content"
android:layout_marginStart="18dp"
android:layout_marginTop="18dp"
android:text="어머니와 지금 같이 살고 있어?"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

임시로 넣어둔 값이면 tools로 넣고, 아니라면 text는 string 빼주세요!

Comment on lines 32 to 33


Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

필요없는 공백도 지워주세요!

Copy link
Contributor

@yeoncheong yeoncheong left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

확인 완료!!
리뷰 단 것만 수정하고 바로 머지하셔도 됩니다

<ProgressBar
android:id="@+id/progress_bar"
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
android:layout_width="match_parent"
android:layout_height="5dp"
android:layout_marginHorizontal="24dp"
android:layout_marginTop="12dp"
android:progressDrawable="@drawable/progress_qeust"
android:progressDrawable="@drawable/progress_bar_qeust"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

지금 확인했는데 이거 철자 틀린 것 같아요!!

@ss99x2002 ss99x2002 merged commit 435546b into develop Jul 5, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
design UI 추가 및 수정 서현
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Design] 온보딩 질문 화면 UI 구현
2 participants