-
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
Changes from 7 commits
0de27fb
6cb1c8a
3166c1d
d014594
fbf11c5
a2b75b7
8360b72
1d8862c
c45b522
d8c57bf
f801421
5280644
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?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" /> | ||
<stroke android:width="6.35dp" /> | ||
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. 6으로 하면 피그마랑 너무 달라지나요? 소수점 사용을 지양합시다 ! 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. 피그마에서 디쟌선생님들이 6.35로 줘서 그대로 반영했었습니닷,, 사실 6으로 해도 상관 없을 것 같아서 6으로 수정하겠습니다! |
||
<stroke android:color="@color/gray_50" /> | ||
<corners android:radius="6dp" /> | ||
</shape> |
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.
아!! 요부분은 텍스트 색깔이군엽 설명 감사합니당!