12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- Nextcloud Android client application
- Copyright (C) 2017 Andy Scherzinger
- Copyright (C) 2017 Mario Danic
- 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"
- android:id="@+id/drawer_layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:clickable="true"
- android:fitsSystemWindows="true">
- <!-- The main content view -->
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <include
- android:id="@+id/navigation_bar"
- layout="@layout/toolbar_standard"/>
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_above="@+id/bottom_navigation_view"
- android:layout_below="@+id/navigation_bar">
- <android.support.v4.widget.SwipeRefreshLayout
- android:id="@+id/swipe_containing_list"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:footerDividersEnabled="false"
- android:visibility="visible">
- <android.support.v7.widget.RecyclerView
- android:id="@android:id/list"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginBottom="-3dp"
- android:layout_marginLeft="-3dp"
- android:layout_marginRight="-3dp"
- android:clipToPadding="false"
- android:scrollbarStyle="outsideOverlay"
- android:scrollbars="vertical"
- android:visibility="visible"/>
- </android.support.v4.widget.SwipeRefreshLayout>
- <android.support.v4.widget.SwipeRefreshLayout
- android:id="@+id/swipe_containing_empty"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:footerDividersEnabled="false"
- android:visibility="visible">
- <include layout="@layout/empty_list"/>
- </android.support.v4.widget.SwipeRefreshLayout>
- </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"/>
- </RelativeLayout>
- <include
- layout="@layout/drawer"
- android:layout_width="240dp"
- android:layout_height="match_parent"
- android:layout_gravity="start"/>
- </android.support.v4.widget.DrawerLayout>
|