2019-09-18 22:29:09 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:context=".MainActivity"
|
|
|
|
tools:theme="@style/AppTheme.Black">
|
|
|
|
|
2019-12-15 21:27:50 +01:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/rootFrame"
|
2019-09-18 22:29:09 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-12-15 21:27:50 +01:00
|
|
|
android:layout_height="match_parent">
|
2019-09-18 22:29:09 +02:00
|
|
|
|
2019-12-15 21:27:50 +01:00
|
|
|
<pl.szczodrzynski.navlib.NavView
|
|
|
|
android:id="@+id/navView"
|
2019-09-18 22:29:09 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-12-15 21:27:50 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:animateLayoutChanges="true">
|
2019-09-18 22:29:09 +02:00
|
|
|
|
2019-12-15 21:27:50 +01:00
|
|
|
<pl.szczodrzynski.edziennik.utils.SwipeRefreshLayoutNoTouch
|
|
|
|
android:id="@+id/swipeRefreshLayout"
|
2019-09-18 22:29:09 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2019-12-15 21:27:50 +01:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/fragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2019-09-18 22:29:09 +02:00
|
|
|
|
2019-12-15 21:27:50 +01:00
|
|
|
<include layout="@layout/fragment_loading" />
|
|
|
|
</FrameLayout>
|
2019-09-18 22:29:09 +02:00
|
|
|
|
2019-12-15 21:27:50 +01:00
|
|
|
</pl.szczodrzynski.edziennik.utils.SwipeRefreshLayoutNoTouch>
|
|
|
|
|
|
|
|
</pl.szczodrzynski.navlib.NavView>
|
|
|
|
|
|
|
|
</FrameLayout>
|
2019-09-18 22:29:09 +02:00
|
|
|
|
|
|
|
</layout>
|