mirror of
https://github.com/nextcloud/android.git
synced 2024-12-23 01:00:26 +03:00
70 lines
No EOL
2.6 KiB
XML
70 lines
No EOL
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!--
|
|
Nextcloud Android client application
|
|
|
|
Copyright (C) 2017 Tobias Kaminsky
|
|
Copyright (C) 2017 Nextcloud.
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
License as published by the Free Software Foundation; either
|
|
version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public
|
|
License along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
-->
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:animateLayoutChanges="true"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/contactlist_recyclerview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:choiceMode="multipleChoice" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/contactlist_restore_selected_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/white"
|
|
android:orientation="vertical"
|
|
android:visibility="gone">
|
|
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:src="@drawable/uploader_list_separator"
|
|
android:contentDescription="@null"/>
|
|
|
|
<android.support.v7.widget.AppCompatButton
|
|
android:id="@+id/contactlist_restore_selected"
|
|
style="@style/Button.Borderless"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/contaclist_restore_selected" />
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/empty_list_container"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true">
|
|
|
|
<include layout="@layout/empty_list" />
|
|
</RelativeLayout>
|
|
</RelativeLayout> |