-
Notifications
You must be signed in to change notification settings - Fork 2
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
[UI/#216] 취향 태그 뷰 / UI 구현 #224
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
0de27fb
[UI/#216] 취향 조회 UI 수정
leeeyubin 6cb1c8a
Merge branches 'ui/#216-preference-tag' and 'develop' of https://gith…
leeeyubin 3166c1d
[UI/#216] 프로그레스바 UI 구현
leeeyubin d014594
Merge branch 'develop' of https://github.com/Team-Going/Going-Android…
leeeyubin fbf11c5
[UI/#216] 취향 조회 UI 구현
leeeyubin a2b75b7
[UI/#216] 취향 조회 UI 수정
leeeyubin 8360b72
[CHORE/#216] 코드 최적화
leeeyubin 1d8862c
Merge branch 'develop' of https://github.com/Team-Going/Going-Android…
leeeyubin c45b522
[CHORE/#216] 코드 리뷰 반영
leeeyubin d8c57bf
[CHORE/#216] 코드 리뷰 반영
leeeyubin f801421
[CHORE/#216] 코드 리뷰 재반영
leeeyubin 5280644
Merge branch 'develop' of https://github.com/Team-Going/Going-Android…
leeeyubin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
18 changes: 11 additions & 7 deletions
18
presentation/src/main/res/drawable/layer_list_trip_friends_progress_bar.xml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,25 @@ | ||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 이제 레이어 리스트 마스터했네요 ㅎㅎㅎㅎ |
||
<item android:id="@android:id/background"> | ||
<shape> | ||
<corners android:radius="4dp"/> | ||
<solid android:color="@color/gray_50"/> | ||
<corners android:radius="3dp" /> | ||
<solid android:color="@color/gray_100" /> | ||
</shape> | ||
</item> | ||
|
||
<item android:id="@android:id/progress"> | ||
<item android:id="@android:id/secondaryProgress"> | ||
<clip> | ||
<shape> | ||
<corners android:radius="4dp"/> | ||
<solid android:color="@color/gray_400"/> | ||
<corners android:radius="3dp" /> | ||
<solid android:color="@color/gray_300" /> | ||
</shape> | ||
</clip> | ||
<clip android:top="2dp" android:bottom="2dp" android:left="2dp" android:right="2dp"> | ||
</item> | ||
|
||
<item android:id="@android:id/progress"> | ||
<clip> | ||
<shape> | ||
<solid android:color="@color/gray_400"/> | ||
<corners android:radius="3dp" /> | ||
<solid android:color="@color/gray_400" /> | ||
</shape> | ||
</clip> | ||
</item> | ||
|
6 changes: 6 additions & 0 deletions
6
presentation/src/main/res/drawable/shape_rect_6_gray50_fill.xml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:shape="rectangle"> | ||
<solid android:color="@color/gray_50" /> | ||
<corners android:radius="6dp" /> | ||
</shape> |
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
요부분으로 프로그래스바 색 다르게 구현하는군요!!!
역시 오비 이유빈.. 다르다..👍👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
엇 요 부분은 성향 검사 결과 Text의 색깔을 다르게 구현하는 함수입니다!
프로그레스바 색상은
layer_list_trip_friends_progress_bar.xml
파일에 미리 만들어두었어요!추후에 서버에서 값 넘겨주면
setProgressBarStatus()
함수에서 값만 쇽샥 넣어줄 예정입니당There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아!! 요부분은 텍스트 색깔이군엽 설명 감사합니당!