summaryrefslogtreecommitdiff
path: root/app/src/main/res/navigation/nav_graph.xml
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2020-02-21 13:52:10 -0300
committerTorsten Grote <t@grobox.de>2020-02-21 13:52:10 -0300
commit9b07cda04a02f5e8f685feb505db251006fd45fd (patch)
treeb8a4e2d5dda19ee6a5dd3b9af7519f24ebf635e7 /app/src/main/res/navigation/nav_graph.xml
parent5522993ea436e1fb0eaec98b412fc97203bfd899 (diff)
downloadwallet-android-9b07cda04a02f5e8f685feb505db251006fd45fd.tar.gz
wallet-android-9b07cda04a02f5e8f685feb505db251006fd45fd.tar.bz2
wallet-android-9b07cda04a02f5e8f685feb505db251006fd45fd.zip
Fix nav drawer item selection and other minor issues
Diffstat (limited to 'app/src/main/res/navigation/nav_graph.xml')
-rw-r--r--app/src/main/res/navigation/nav_graph.xml19
1 files changed, 10 insertions, 9 deletions
diff --git a/app/src/main/res/navigation/nav_graph.xml b/app/src/main/res/navigation/nav_graph.xml
index 5cfbf5b..a82d7be 100644
--- a/app/src/main/res/navigation/nav_graph.xml
+++ b/app/src/main/res/navigation/nav_graph.xml
@@ -1,5 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
+<?xml version="1.0" encoding="utf-8"?><!--
~ This file is part of GNU Taler
~ (C) 2020 Taler Systems S.A.
~
@@ -79,24 +78,26 @@
<action
android:id="@+id/action_promptWithdraw_to_reviewExchangeTOS"
app:destination="@id/reviewExchangeTOS"
- app:popUpTo="@id/showBalance"/>
+ app:popUpTo="@id/showBalance" />
</fragment>
<fragment
android:id="@+id/withdrawSuccessful"
android:name="net.taler.wallet.WithdrawSuccessful"
android:label="Withdrawal Confirmed"
tools:layout="@layout/fragment_withdraw_successful" />
- <action
- android:id="@+id/action_global_promptPayment"
- app:destination="@id/promptPayment" />
<fragment
android:id="@+id/reviewExchangeTOS"
android:name="net.taler.wallet.ReviewExchangeTOS"
android:label="Exchange's Terms of Service"
- tools:layout="@layout/fragment_review_exchange_tos" >
+ tools:layout="@layout/fragment_review_exchange_tos">
<action
android:id="@+id/action_reviewExchangeTOS_to_promptWithdraw"
- app:popUpTo="@id/showBalance"
- app:destination="@id/promptWithdraw" />
+ app:destination="@id/promptWithdraw"
+ app:popUpTo="@id/showBalance" />
</fragment>
+
+ <action
+ android:id="@+id/action_global_promptPayment"
+ app:destination="@id/promptPayment" />
+
</navigation> \ No newline at end of file