2017-04-20 13:33:33 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2025-03-14 12:46:04 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:orientation="vertical"
|
2017-04-20 13:33:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2025-03-14 12:46:04 +00:00
|
|
|
android:layout_height="match_parent">
|
2025-06-09 19:55:59 +00:00
|
|
|
|
2025-06-11 17:53:33 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/chat_empty_container"
|
|
|
|
|
android:orientation="vertical"
|
2025-06-09 19:55:59 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center"
|
2025-06-11 17:54:47 +00:00
|
|
|
android:visibility="invisible"
|
2025-06-09 19:55:59 +00:00
|
|
|
android:layout_weight="1"
|
2025-06-11 17:53:33 +00:00
|
|
|
android:paddingHorizontal="@dimen/spacing_large"
|
|
|
|
|
android:paddingVertical="@dimen/spacing_medium">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/chat_empty_title"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
|
android:text="@string/chat_empty_state_title"
|
|
|
|
|
android:textColor="@color/gray100_gray400"
|
|
|
|
|
android:textSize="17sp"
|
|
|
|
|
android:fontFamily="sans-serif-medium" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/chat_empty_description"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:text="@string/chat_empty_state_description"
|
|
|
|
|
android:textColor="@color/gray200_gray400"
|
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
</LinearLayout>
|
2025-06-09 19:55:59 +00:00
|
|
|
|
2025-03-14 12:46:04 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.helpers.RecyclerViewEmptySupport
|
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
app:windowInsetBottom="false" />
|
2017-05-15 09:07:17 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.social.ChatBarView
|
2025-03-14 12:46:04 +00:00
|
|
|
android:id="@+id/chatBarView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content" />
|
2025-01-30 10:29:45 +00:00
|
|
|
</LinearLayout>
|