如果我在 MainMenuView 上运行教程的实现并按回将退出应用程序,但在我的应用程序中它只是转到 SplashScreenView 并被重定向回 MainMenuView 并且我无法在教程中找到它指定或覆盖的位置单击后退按钮
[Activity(Label = "Tutorial.UI.Droid", MainLauncher = true, NoHistory = true, Icon = "@drawable/icon")]
public class SplashScreenActivity
: MvxBaseSplashScreenActivity
{
public SplashScreenActivity()
: base(Resource.Layout.SplashScreen)
{
}
protected override void OnViewModelSet()
{
// ignored
}
}