|
@@ -18,12 +18,12 @@
|
|
|
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">
|
|
|
+ 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
|
|
@@ -33,7 +33,7 @@
|
|
|
|
|
|
<include
|
|
|
android:id="@+id/navigation_bar"
|
|
|
- layout="@layout/toolbar_standard"/>
|
|
|
+ layout="@layout/toolbar_standard" />
|
|
|
|
|
|
<FrameLayout
|
|
|
android:layout_width="match_parent"
|
|
@@ -58,10 +58,11 @@
|
|
|
android:clipToPadding="false"
|
|
|
android:scrollbarStyle="outsideOverlay"
|
|
|
android:scrollbars="vertical"
|
|
|
- android:visibility="visible"/>
|
|
|
+ android:visibility="visible" />
|
|
|
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
|
|
- <include layout="@layout/empty_list"/>
|
|
|
+
|
|
|
+ <include layout="@layout/empty_list" />
|
|
|
</FrameLayout>
|
|
|
|
|
|
<android.support.design.widget.BottomNavigationView
|
|
@@ -73,7 +74,7 @@
|
|
|
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"/>
|
|
|
+ app:menu="@menu/navigation_bar_menu" />
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
@@ -82,6 +83,6 @@
|
|
|
layout="@layout/drawer"
|
|
|
android:layout_width="@dimen/drawer_width"
|
|
|
android:layout_height="match_parent"
|
|
|
- android:layout_gravity="start"/>
|
|
|
+ android:layout_gravity="start" />
|
|
|
|
|
|
</android.support.v4.widget.DrawerLayout>
|