|
@@ -18,24 +18,24 @@
|
|
|
License along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
-->
|
|
|
<androidx.drawerlayout.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
|
|
|
+ <androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:orientation="vertical">
|
|
|
+ android:layout_height="match_parent">
|
|
|
|
|
|
<include layout="@layout/toolbar_standard" />
|
|
|
|
|
|
<FrameLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
- android:layout_below="@id/appbar">
|
|
|
+ android:layout_below="@id/appbar"
|
|
|
+ app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
|
android:id="@+id/swipe_containing_list"
|
|
@@ -61,7 +61,7 @@
|
|
|
|
|
|
<include layout="@layout/empty_list" />
|
|
|
</FrameLayout>
|
|
|
- </RelativeLayout>
|
|
|
+ </androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
|
|
|
|
|
<include
|