With proper color scheme and "Start chat" text Change-Id: I320b169b2bec354db7b0ebc3e81149aaf575092f
56 lines
2.3 KiB
XML
56 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2015 The Android Open Source Project
|
|
Copyright (C) 2024 The LineageOS Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<FrameLayout
|
|
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:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@android:id/list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="@dimen/conversation_list_first_item_extra_padding"
|
|
android:clipToPadding="false"
|
|
android:listSelector="?android:attr/listSelector"
|
|
android:dividerHeight="0px" />
|
|
|
|
<include
|
|
layout="@layout/list_empty_view"
|
|
android:id="@+id/no_conversations_view"
|
|
android:visibility="gone"
|
|
android:layout_marginBottom="@dimen/conversation_list_empty_text_bottom_margin" />
|
|
|
|
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
|
app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlay"
|
|
android:id="@+id/start_new_conversation_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|end"
|
|
android:layout_margin="16dp"
|
|
android:text="@string/start_chat"
|
|
android:forceDarkAllowed="false"
|
|
android:textColor="@color/fab_fg_color"
|
|
app:backgroundTint="@color/fab_color"
|
|
app:icon="@drawable/ic_message"
|
|
app:iconTint="@color/fab_fg_color"
|
|
app:layout_behavior="com.google.android.material.behavior.HideBottomViewOnScrollBehavior" />
|
|
|
|
</FrameLayout>
|