]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/res/layout/main_navigation.xml
add a copy of the navigation drawer header to the welcome screen
[mobile-ledger.git] / app / src / main / res / layout / main_navigation.xml
index 4ec47d0a7fdcf7da09d819c842a59d9aed032bb9..fb30743c8420a1711e2d20247499b911d995d352 100644 (file)
@@ -1,18 +1,18 @@
 <?xml version="1.0" encoding="utf-8"?><!--
   ~ Copyright © 2019 Damyan Ivanov.
-  ~  This file is part of MoLe.
-  ~  MoLe is free software: you can distribute it and/or modify it
-  ~  under the term of the GNU General Public License as published by
-  ~  the Free Software Foundation, either version 3 of the License, or
-  ~  (at your opinion), any later version.
+  ~ This file is part of MoLe.
+  ~ MoLe is free software: you can distribute it and/or modify it
+  ~ under the term of the GNU General Public License as published by
+  ~ the Free Software Foundation, either version 3 of the License, or
+  ~ (at your opinion), any later version.
   ~
-  ~  MoLe 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 General Public License terms for details.
+  ~ MoLe 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 General Public License terms for details.
   ~
-  ~  You should have received a copy of the GNU General Public License
-  ~  along with Mobile-Ledger. If not, see <https://www.gnu.org/licenses/>.
+  ~ You should have received a copy of the GNU General Public License
+  ~ along with MoLe. If not, see <https://www.gnu.org/licenses/>.
   -->
 
 <com.google.android.material.navigation.NavigationView xmlns:android="http://schemas.android.com/apk/res/android"
@@ -42,6 +42,7 @@
             android:elevation="2dp"
             android:orientation="vertical"
             android:showDividers="beginning"
+            android:visibility="gone"
             app:layout_constraintBottom_toBottomOf="parent">
 
             <TextView
@@ -49,7 +50,6 @@
                 style="@style/nav_button"
                 android:layout_weight="1"
                 android:drawableStart="@drawable/ic_settings_black_24dp"
-                android:onClick="navSettingsClicked"
                 android:text="@string/action_settings" />
 
         </LinearLayout>
                 app:layout_constraintBottom_toTopOf="@+id/nav_fixed_items"
                 app:layout_constraintTop_toBottomOf="@+id/nav_header">
 
-                <LinearLayout
-                    android:id="@+id/nav_header"
-                    android:layout_width="match_parent"
-                    android:layout_height="wrap_content"
-                    android:background="@drawable/side_nav_bar"
-                    android:gravity="center_vertical"
-                    android:orientation="horizontal"
-                    android:padding="@dimen/activity_vertical_margin"
-                    android:theme="@style/ThemeOverlay.AppCompat.Dark"
-                    app:layout_constraintTop_toTopOf="parent">
-
-                    <include layout="@layout/nav_header_logo" />
-
-                    <LinearLayout
-                        android:layout_width="match_parent"
-                        android:layout_height="match_parent"
-                        android:layout_marginStart="@dimen/activity_horizontal_margin"
-                        android:layout_marginEnd="@dimen/activity_horizontal_margin"
-                        android:gravity="center_vertical"
-                        android:orientation="vertical">
-
-                        <TextView
-                            android:layout_width="match_parent"
-                            android:layout_height="wrap_content"
-                            android:text="@string/app_name"
-                            android:textAppearance="@style/TextAppearance.AppCompat.Body1" />
-
-                        <TextView
-                            android:id="@+id/drawer_version_text"
-                            android:layout_width="wrap_content"
-                            android:layout_height="wrap_content"
-                            android:text="dummy version"
-                            tools:ignore="HardcodedText" />
-                    </LinearLayout>
-
-                </LinearLayout>
+                <include layout="@layout/nav_header_layout" />
 
                 <LinearLayout
                     android:id="@+id/nav_actions"
                         style="@style/nav_button"
                         android:drawableStart="@drawable/ic_event_note_black_24dp"
                         android:onClick="onLatestTransactionsClicked"
-                        android:text="@string/nav_latest_transactions_title" />
+                        android:text="@string/nav_transactions_title" />
 
                     <TextView
                         android:id="@+id/textView5"
                         style="@style/nav_button"
                         android:drawableStart="@drawable/ic_assignment_black_24dp"
-                        android:text="@string/nav_reports_title" />
+                        android:text="@string/nav_reports_title"
+                        android:visibility="gone" />
 
-                    <include layout="@layout/nav_profile_list_head" />
+                    <include
+                        android:id="@+id/nav_profile_list_head_layout"
+                        layout="@layout/nav_profile_list_head" />
 
                     <LinearLayout
                         android:id="@+id/nav_profile_list_container"
                         android:layout_width="match_parent"
                         android:layout_height="wrap_content"
                         android:animateLayoutChanges="true"
-                        android:isScrollContainer="false"
-                        android:orientation="vertical"
-                        android:visibility="gone">
+                        android:nestedScrollingEnabled="false"
+                        android:orientation="vertical">
 
                         <androidx.recyclerview.widget.RecyclerView
                             android:id="@+id/nav_profile_list"
 
                         </androidx.recyclerview.widget.RecyclerView>
 
-                        <include layout="@layout/nav_profile_list_new_profile_row" />
                     </LinearLayout>
 
                 </LinearLayout>