2018-11-28 19:15:30 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
2018-08-24 12:05:04 +03:00
|
|
|
~ Nextcloud Talk application
|
|
|
|
~
|
|
|
|
~ @author Mario Danic
|
|
|
|
~ Copyright (C) 2017-2018 Mario Danic <mario@lovelyhq.com>
|
|
|
|
~
|
|
|
|
~ This program is free software: you can redistribute it and/or modify
|
|
|
|
~ it under the terms of the GNU General Public License as published by
|
|
|
|
~ the Free Software Foundation, either version 3 of the License, or
|
|
|
|
~ at your option) any later version.
|
|
|
|
~
|
|
|
|
~ This program is distributed in the hope that it will be useful,
|
|
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
~ GNU General Public License for more details.
|
|
|
|
~
|
|
|
|
~ You should have received a copy of the GNU General Public License
|
|
|
|
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
|
2018-10-02 23:34:00 +03:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-11-28 18:37:25 +03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-11-28 19:15:30 +03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-11-28 18:37:25 +03:00
|
|
|
android:id="@+id/generic_rv_layout"
|
|
|
|
android:layout_width="match_parent"
|
2019-03-04 20:35:38 +03:00
|
|
|
android:layout_height="match_parent">
|
2018-08-24 12:05:04 +03:00
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progressBar"
|
|
|
|
android:layout_width="@dimen/item_height"
|
|
|
|
android:layout_height="@dimen/item_height"
|
|
|
|
android:layout_gravity="center"
|
2018-11-28 19:15:30 +03:00
|
|
|
android:layout_marginStart="@dimen/activity_horizontal_margin"
|
2018-08-24 12:05:04 +03:00
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
2018-11-28 19:15:30 +03:00
|
|
|
android:layout_marginEnd="@dimen/activity_horizontal_margin"
|
2018-08-24 12:05:04 +03:00
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:indeterminate="true"
|
|
|
|
android:indeterminateTint="@color/colorPrimary"
|
2018-11-28 19:15:30 +03:00
|
|
|
android:indeterminateTintMode="src_in" />
|
2018-08-24 12:05:04 +03:00
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/emptyLayout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:visibility="gone">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/noConversationsImageView"
|
|
|
|
android:layout_width="72dp"
|
|
|
|
android:layout_height="72dp"
|
|
|
|
android:layout_centerInParent="true"
|
2018-12-17 18:13:32 +03:00
|
|
|
android:src="@drawable/ic_logo"
|
|
|
|
android:tint="@color/colorPrimary" />
|
2018-08-24 12:05:04 +03:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/sendHiTextView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/noConversationsImageView"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
android:text="@string/nc_conversations_empty"
|
|
|
|
android:textAlignment="center"
|
2018-11-28 19:15:30 +03:00
|
|
|
android:textSize="20sp" />
|
2018-08-24 12:05:04 +03:00
|
|
|
</RelativeLayout>
|
|
|
|
|
2018-10-02 23:34:00 +03:00
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
2018-08-24 12:05:04 +03:00
|
|
|
android:id="@+id/swipeRefreshLayoutView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-11-28 19:15:30 +03:00
|
|
|
android:visibility="gone"
|
|
|
|
app:layout_behavior="com.nextcloud.talk.utils.FABAwareScrollingViewBehavior">
|
2018-08-24 12:05:04 +03:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2018-10-02 23:34:00 +03:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2018-08-24 12:05:04 +03:00
|
|
|
android:id="@+id/recycler_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-11-28 19:15:30 +03:00
|
|
|
tools:listitem="@layout/rv_item_conversation" />
|
2018-08-24 12:05:04 +03:00
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
2018-10-02 23:34:00 +03:00
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
2018-08-24 12:05:04 +03:00
|
|
|
|
2018-11-28 18:37:25 +03:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
android:id="@+id/floatingActionButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom|end"
|
2019-12-26 20:48:06 +03:00
|
|
|
android:backgroundTint="@color/colorPrimary"
|
2018-11-28 18:37:25 +03:00
|
|
|
android:layout_margin="16dp"
|
2020-10-12 17:14:52 +03:00
|
|
|
app:borderWidth="0dp"
|
2019-12-26 20:48:06 +03:00
|
|
|
app:tint="@color/white"
|
|
|
|
app:srcCompat="@drawable/ic_add_white_24px"/>
|
2018-11-28 18:37:25 +03:00
|
|
|
|
2019-08-30 13:12:40 +03:00
|
|
|
<include layout="@layout/fast_scroller" />
|
|
|
|
|
2018-10-02 23:34:00 +03:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|