123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- Nextcloud Android client application
- Copyright (C) 2017 Andy Scherzinger
- 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/>.
- -->
- <android.support.v4.widget.DrawerLayout 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:id="@+id/drawer_layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:fitsSystemWindows="true"
- tools:openDrawer="start">
- <android.support.design.widget.CoordinatorLayout 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">
- <android.support.design.widget.AppBarLayout
- android:id="@+id/app_bar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <android.support.design.widget.CollapsingToolbarLayout
- android:id="@+id/collapsing_toolbar"
- android:layout_width="match_parent"
- android:layout_height="@dimen/collapsing_toolbar_layout_height"
- app:layout_scrollFlags="scroll|exitUntilCollapsed|snap"
- app:titleEnabled="false">
- <RelativeLayout
- android:id="@+id/custom_folder_toolbar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal|bottom"
- android:gravity="center"
- android:onClick="onAddCustomFolderClick"
- android:padding="@dimen/standard_padding"
- app:layout_collapseMode="pin">
- <ImageView
- android:id="@+id/custom_folder_image"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/ic_folder_star_18dp"
- android:contentDescription="@string/synced_folder_custom_folder_image"/>
- <TextView
- android:id="@+id/add_custom_folder"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_toRightOf="@id/custom_folder_image"
- android:layout_toEndOf="@id/custom_folder_image"
- android:paddingLeft="@dimen/alternate_half_padding"
- android:paddingStart="@dimen/alternate_half_padding"
- android:paddingRight="@dimen/zero"
- android:paddingEnd="@dimen/zero"
- android:text="@string/autoupload_custom_folder"/>
- </RelativeLayout>
- <android.support.v7.widget.Toolbar
- android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="?attr/actionBarSize"
- android:background="?attr/colorPrimary"
- app:layout_collapseMode="pin"/>
- </android.support.design.widget.CollapsingToolbarLayout>
- </android.support.design.widget.AppBarLayout>
- <FrameLayout
- android:id="@+id/ListLayout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_above="@+id/bottom_navigation_view"
- android:orientation="vertical"
- app:layout_behavior="@string/appbar_scrolling_view_behavior">
- <LinearLayout
- android:id="@android:id/progress"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:orientation="vertical"
- android:visibility="gone">
- <ProgressBar
- android:id="@+id/syncedFoldersProgressBar"
- android:layout_width="@dimen/synced_folders_progress_bar_layout_width"
- android:layout_height="@dimen/synced_folders_progress_bar_layout_height"
- android:layout_gravity="center_horizontal"/>
- <TextView
- android:id="@+id/progressText"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:layout_margin="@dimen/standard_half_margin"
- android:text="@string/synced_folders_loading_folders"
- android:textSize="26sp"/>
- </LinearLayout>
- <TextView
- android:id="@android:id/empty"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:layout_margin="@dimen/standard_margin"
- android:gravity="center"
- android:text="@string/synced_folders_no_results"
- android:visibility="gone"/>
- <android.support.v7.widget.RecyclerView
- android:id="@android:id/list"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginBottom="@dimen/synced_folders_recycler_view_layout_margin"
- android:layout_marginLeft="@dimen/synced_folders_recycler_view_layout_margin"
- android:layout_marginRight="@dimen/synced_folders_recycler_view_layout_margin"
- android:clipToPadding="false"
- android:scrollbarStyle="outsideOverlay"
- android:scrollbars="vertical"
- android:visibility="visible"/>
- </FrameLayout>
- <android.support.design.widget.BottomNavigationView
- android:id="@+id/bottom_navigation_view"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:visibility="gone"
- app:itemBackground="@color/primary_button_background_color"
- app:itemIconTint="@color/primary_button_text_color"
- app:itemTextColor="@color/primary_button_text_color"
- app:menu="@menu/navigation_bar_menu"/>
- </android.support.design.widget.CoordinatorLayout>
- <include
- layout="@layout/drawer"
- android:layout_width="@dimen/drawer_width"
- android:layout_height="match_parent"
- android:layout_gravity="start"/>
- </android.support.v4.widget.DrawerLayout>
|