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

Feature/#29 clip, clip detail 뷰 / UI 구현 #35

Merged
merged 20 commits into from
Jan 6, 2024

Conversation

codingmy
Copy link
Contributor

@codingmy codingmy commented Jan 5, 2024

📌 PR 요약

🌱 작업한 내용

  • clip(category)뷰, clip detail(개별 카테고리 진입시 보이는뷰)뷰 xml 작업

🌱 PR 포인트
삽질하다가 끊어가려고 쪼개서 pr 올리는 거라서 현재 작업 안된 부분

  • 상단 툴바 구현x
  • 모서리 미적용
  • clip detail뷰 링크 없을 때 띄워지는 이미지 에러나서 현재 임시 이미지
  • String 추출

작업한 부분

  • clip뷰 리사이클러뷰 item
  • clip detail뷰 리사이클러뷰 item
  • 각종 margin, padding 모두 반영
  • font, text 관련

네이밍 가독성을 위해 fragment 네이밍을 clip(category), clip detail(category뷰에서 특정 카테고리 진입시 링크 보여주는 뷰) 으로 변경했는데 그닥인거 같아서 좋은 아이디어 있으면 받습니다~
일단 녹화용으로 clip detail뷰를 home에 옮겨서 녹화떴슴당(커밋안함)
item 구현은 스크린샷 캡쳐 참고

+) 다시보니까 좀더 pr을 쪼개서 올렸어야했네용...담부터는 좀더 쪼개서 올리겠습니다

📸 스크린샷

Screen_Recording_20240105_163051_One.UI.Home.mp4

|파일첨부바람|
image
image

📮 관련 이슈

@codingmy codingmy added ⭐ [FEAT] 새로운 기능 구현 민영 안산대장 💟 [UI] UI 작업 xml 파일 건들면 요거 labels Jan 5, 2024
@codingmy codingmy self-assigned this Jan 5, 2024
@codingmy codingmy changed the title Feature/#29 category UI Feature/#29 clip, clip detail 뷰 기본 UI Jan 5, 2024
@codingmy codingmy changed the title Feature/#29 clip, clip detail 뷰 기본 UI Feature/#29 clip, clip detail 뷰 / 기본 UI Jan 5, 2024
@codingmy codingmy changed the title Feature/#29 clip, clip detail 뷰 / 기본 UI Feature/#29 clip, clip detail 뷰 / UI 궇ㄴ Jan 5, 2024
@codingmy codingmy changed the title Feature/#29 clip, clip detail 뷰 / UI 궇ㄴ Feature/#29 clip, clip detail 뷰 / UI 구현 Jan 5, 2024
@codingmy codingmy added this to the ui 작업 milestone Jan 5, 2024
Copy link
Contributor

@lsakee lsakee left a comment

Choose a reason for hiding this comment

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

svg 파일이 너무 커요 차라리 png ..

android:layout_height="match_parent"
android:background="@color/background">

<androidx.appcompat.widget.Toolbar
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

@Sangwook123 Sangwook123 left a comment

Choose a reason for hiding this comment

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

고생하셨슴니다 리뷰 확인해주시고 스트링 추출해주세요 ~ !

Copy link
Contributor

Choose a reason for hiding this comment

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

이미지는 png파일로 넣어주세요

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

Choose a reason for hiding this comment

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

얘두


<androidx.appcompat.widget.AppCompatButton
android:id="@+id/btn_clip_all"
android:layout_width="105dp"
Copy link
Contributor

Choose a reason for hiding this comment

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

dp값 지정말고 컨스트레인트 활용해 봅시다 !

<com.google.android.material.divider.MaterialDivider
android:id="@+id/dv_clip_picker1"
android:layout_width="1dp"
android:layout_height="19dp"
Copy link
Contributor

Choose a reason for hiding this comment

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

얘도 0dp랑 마진으로 될거같아여

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/btn_clip_read"
android:layout_width="105dp"
android:layout_height="38dp"
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 Author

Choose a reason for hiding this comment

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

이거 첨에 마진으로 처리할려고 했었을 때 육안상 사이즈가 이상하게 나와서 길이 픽스 준거였는데 일단 다시 마진으로 해서 올릴게영

app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" >
<include layout="@layout/toolbar_clip"/>
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

@lsakee lsakee left a comment

Choose a reason for hiding this comment

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

LGTM

Copy link
Contributor

@Sangwook123 Sangwook123 left a comment

Choose a reason for hiding this comment

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

LGTM

@lsakee lsakee merged commit ca68ff2 into develop Jan 6, 2024
1 check passed
@lsakee lsakee deleted the feature/#29-category-UI branch January 6, 2024 15:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
⭐ [FEAT] 새로운 기능 구현 민영 안산대장 💟 [UI] UI 작업 xml 파일 건들면 요거
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

[feat] Category뷰 / UI 구현
3 participants