54 lines
2.2 KiB
XML
54 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2015 The Android Open Source 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: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" />
|
|
|
|
<ImageView
|
|
style="@style/ConversationListFragmentStartNewButtonStyle"
|
|
android:id="@+id/start_new_conversation_button"
|
|
android:layout_width="@dimen/fab_size"
|
|
android:layout_height="@dimen/fab_size"
|
|
android:layout_gravity="bottom|end"
|
|
android:layout_marginBottom="@dimen/fab_bottom_margin"
|
|
android:paddingBottom="@dimen/fab_padding_bottom"
|
|
android:background="@drawable/fab_new_message_bg"
|
|
android:elevation="@dimen/fab_elevation"
|
|
android:scaleType="center"
|
|
android:src="@drawable/ic_add_white"
|
|
android:stateListAnimator="@animator/fab_anim"
|
|
android:contentDescription="@string/start_new_conversation"/>
|
|
|
|
</FrameLayout>
|