mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-12-17 22:21:57 +03:00
e6a78405ed
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
78 lines
2.9 KiB
XML
78 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!--
|
|
~ Nextcloud Talk application
|
|
~
|
|
~ @author Andy Scherzinger
|
|
~ Copyright (C) 2018 Andy Scherzinger
|
|
~
|
|
~ 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/>.
|
|
-->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:animateLayoutChanges="true">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/loading_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<include layout="@layout/rv_item_contact_shimmer" />
|
|
<include layout="@layout/rv_item_contact_shimmer" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<com.elyeproj.loaderviewlibrary.LoaderTextView
|
|
android:id="@+id/title_text_view"
|
|
android:layout_width="16dp"
|
|
android:layout_height="32dp"
|
|
android:layout_marginStart="72dp"
|
|
android:layout_marginTop="@dimen/standard_half_margin"
|
|
android:layout_marginEnd="@dimen/standard_margin"
|
|
android:layout_marginBottom="@dimen/standard_half_margin"
|
|
app:custom_color="@color/nc_shimmer_default_color" />
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1px"
|
|
android:background="?android:attr/listDivider" />
|
|
|
|
</LinearLayout>
|
|
|
|
<include layout="@layout/rv_item_contact_shimmer" />
|
|
<include layout="@layout/rv_item_contact_shimmer" />
|
|
<include layout="@layout/rv_item_contact_shimmer" />
|
|
|
|
</LinearLayout>
|
|
|
|
<include
|
|
android:id="@+id/conversation_privacy_toggle"
|
|
layout="@layout/conversation_privacy_toggle"
|
|
android:visibility="gone" />
|
|
|
|
<include
|
|
android:id="@+id/join_conversation_via_link"
|
|
layout="@layout/join_conversation_via_link"
|
|
android:visibility="gone" />
|
|
|
|
<include
|
|
android:id="@+id/controller_generic_rv"
|
|
layout="@layout/controller_generic_rv"
|
|
android:visibility="gone" />
|
|
</LinearLayout>
|