feat(ui): 톡 탭

- api, viewmodel, repository 연결
- 채팅방 리스트 UI 추가
This commit is contained in:
2025-08-05 02:01:19 +09:00
parent 93fc837b7a
commit b1c9c3e124
13 changed files with 333 additions and 8 deletions

View File

@@ -5,15 +5,14 @@
android:layout_height="match_parent"
android:background="@color/black">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="톡 탭"
android:textColor="@color/white"
android:textSize="20sp"
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_talk"
android:layout_width="0dp"
android:layout_height="0dp"
android:clipToPadding="false"
android:padding="24dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>