add chat store

This commit is contained in:
shaulascr
2025-05-28 18:51:32 +07:00
parent b1db662494
commit 9b0ae95dfc
10 changed files with 1151 additions and 13 deletions

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:id="@+id/main"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.profile.mystore.chat.ChatListStoreActivity">
<include
android:id="@+id/header"
layout="@layout/header" />
<!-- <TextView-->
<!-- android:id="@+id/chatHeaderTitle"-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:text="Pesan"-->
<!-- android:textSize="24sp"-->
<!-- android:padding="16dp"-->
<!-- android:layout_marginHorizontal="8dp"-->
<!-- android:fontFamily="@font/dmsans_bold" />-->
<com.google.android.material.divider.MaterialDivider
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:dividerColor="@color/black_100" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/chatListRecyclerView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:padding="8dp"
android:clipToPadding="false"
tools:listitem="@layout/item_chat"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
</LinearLayout>