nearby: switch back button to close icon when it will end session

Clicking the toolbar button on the start screen will end the swap session.
This commit is contained in:
Hans-Christoph Steiner
2021-09-09 13:53:24 +02:00
parent 0331e80d94
commit 577a420fac

View File

@@ -608,6 +608,11 @@ public class SwapWorkflowActivity extends AppCompatActivity {
}
inflateSwapView(currentSwapViewLayoutRes);
});
if (viewRes == R.layout.swap_start_swap) {
toolbar.setNavigationIcon(R.drawable.ic_close);
} else {
toolbar.setNavigationIcon(R.drawable.abc_ic_ab_back_material);
}
container.addView(view);
supportInvalidateOptionsMenu();