-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 댓글방 참여자 목록 Drawer Layout UI 구현 (#136)
* feat: 참여자 목록 drawer에 필요한 리소스 파일 추가 * refactor: 채팅 text gravity 수정 * feat: 댓글방 참여자 목록 Drawer Layout UI 구현 * style: ktlint 적용 * refactor: drawer early return 하는 방식으로 변경 * refactor: ivMore -> ivMoreOptions으로 네이밍 변경 * feat: 공구 참여자 item view 및 댓글방 view 사용자 친화적으로 수정
- Loading branch information
Showing
8 changed files
with
414 additions
and
262 deletions.
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
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,13 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportWidth="24" | ||
android:viewportHeight="24"> | ||
<path | ||
android:pathData="M15,4.001H5V18.001C5,18.531 5.211,19.04 5.586,19.415C5.961,19.79 6.47,20.001 7,20.001H15M16,15.001L19,12.001M19,12.001L16,9.001M19,12.001H9" | ||
android:strokeLineJoin="round" | ||
android:strokeWidth="2" | ||
android:fillColor="#00000000" | ||
android:strokeColor="#606060" | ||
android:strokeLineCap="round"/> | ||
</vector> |
583 changes: 327 additions & 256 deletions
583
android/app/src/main/res/layout/activity_comment_detail.xml
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,44 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<layout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
xmlns:tools="http://schemas.android.com/tools"> | ||
|
||
<data> | ||
|
||
<variable | ||
name="commentRoom" | ||
type="com.zzang.chongdae.domain.model.CommentRoom" /> | ||
|
||
<variable | ||
name="onCommentRoomClickListener" | ||
type="com.zzang.chongdae.presentation.view.comment.adapter.OnCommentRoomClickListener" /> | ||
</data> | ||
|
||
|
||
<androidx.constraintlayout.widget.ConstraintLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content"> | ||
|
||
<ImageView | ||
android:id="@+id/iv_profile" | ||
android:layout_width="@dimen/size_30" | ||
android:layout_height="@dimen/size_30" | ||
android:layout_marginStart="@dimen/margin_20" | ||
android:layout_marginTop="@dimen/size_10" | ||
android:layout_marginBottom="@dimen/size_10" | ||
android:src="@drawable/img_profile" | ||
app:layout_constraintBottom_toBottomOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toTopOf="parent" /> | ||
|
||
<TextView | ||
android:id="@+id/tv_offering_title" | ||
style="@style/Theme.AppCompat.TextView.Normal.Gray900.Size17" | ||
android:layout_marginStart="13dp" | ||
app:layout_constraintBottom_toBottomOf="@+id/iv_profile" | ||
app:layout_constraintStart_toEndOf="@id/iv_profile" | ||
app:layout_constraintTop_toTopOf="@+id/iv_profile" | ||
tools:text="참여자1" /> | ||
|
||
</androidx.constraintlayout.widget.ConstraintLayout> | ||
</layout> |
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
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
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