Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am testing https://github.com/xamarin/xamarin-forms-samples/tree/master/UserInterface/Xaminals application on android 9.

I would like to know why the hardware back button does not work as expected (return to the previous view)

Example:

  1. Start app 2- Entered the Dogs tab
  2. Press hardware back button
  3. The application is suspended. You should go back to the cat list.

Example 2:

  1. Start app
  2. Entered the side menu and going to monkeys.
  3. Press hardware back button
  4. The application is suspended. You should go back to the cat list.

I'm not understanding why the hardware button only works correctly for example when I enter the detail of a cat and then I go back.

question from:https://stackoverflow.com/questions/65891645/xamarin-shell-hardware-backbutton

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

Android hardware back button by default closes the currently opened activity and activates an activity from the navigation stack. If you want to override this behavior, you need to handle the back button press and implement the navigation you need for your use case. Shell has this handy feature implemented with BackButtonBehavior property:

https://docs.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/shell/navigation#back-button-behavior


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...