]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/res/menu/new_transaction.xml
more pronounced day/month delimiters in the transaction list
[mobile-ledger.git] / app / src / main / res / menu / new_transaction.xml
index 698dbda2ba7780033227e2252071084df00cd0aa..f4862d8c2e7a2f3a125af1eeb21bc37458cb4b64 100644 (file)
@@ -1,25 +1,37 @@
-<?xml version="1.0" encoding="utf-8"?>
-    <menu xmlns:android="http://schemas.android.com/apk/res/android"
-        xmlns:app="http://schemas.android.com/apk/res-auto">
+<?xml version="1.0" encoding="utf-8"?><!--
+  ~ Copyright © 2021 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.
+  ~
+  ~ 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 MoLe. If not, see <https://www.gnu.org/licenses/>.
+  -->
+
+<menu xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:app="http://schemas.android.com/apk/res-auto"
+    >
+    <group android:id="@+id/new_transaction_debug_menu_items">
         <item
-            android:id="@+id/action_submit_transaction"
-            android:icon="@drawable/ic_save_white_24dp"
-            android:onClick="saveTransactionFromMenu"
-            android:title="@string/action_submit_transaction_title"
-            android:visible="false"
-            app:showAsAction="always" />
+            android:id="@+id/action_simulate_crash"
+            android:title="@string/crash_app_label"
+            android:titleCondensed="@string/crash_app_condensed_label"
+            app:showAsAction="never"
+            />
         <item
-            android:id="@+id/action_add_account"
-            android:icon="@drawable/svg_thick_plus_white"
-            android:onClick="addTransactionAccountFromMenu"
-            android:orderInCategory="100"
-            android:title="@string/menu_add_account"
-            android:visible="false"
-            app:showAsAction="never|ifRoom" />
-    <item
-        android:id="@+id/action_reset_new_transaction_activity"
-        android:icon="@drawable/ic_refresh_white_24dp"
-        android:onClick="resetTransactionFromMenu"
-        android:title="@string/action_reset_new_transaction_activity_title"
-        app:showAsAction="ifRoom|withText" />
+            android:id="@+id/action_simulate_save"
+            android:checkable="true"
+            android:checked="false"
+            android:title="@string/simulate_save_label"
+            android:titleCondensed="@string/simulate_save_condensed_label"
+            app:showAsAction="never"
+            />
+    </group>
 </menu>
\ No newline at end of file