我使用最新的MvvmCross版本(4.2.3)创建了一个非常简单的项目,其中我有2个Android屏幕:FirstView和SecondView。我使用FirstView上的按钮导航到SecondView:
// FirstView.cs
private void PrepareShowSecondButton()
{
var hero = FindViewById<Button>(Resource.Id.firstview_show_second_button);
hero.Text = DreamsResources.FirstView_ShowSecond_Button_Label;
BindingSet.Bind(hero).To(vm => vm.ShowSecondCommand);
BindingSet.Apply();
}
// FirstViewModel.cs
private MvxCommand _showSecondCommand;
public MvxCommand ShowSecondCommand
{
get
{
_showSecondCommand = _showSecondCommand ?? new MvxCommand(DoShowSecondCommand);
return _showSecondCommand;
}
}
private void DoShowSecondCommand()
{
ShowViewModel<SecondViewModel>(new SecondViewModelBundle() { Data = "Hello from FirstView - " + Hello });
}
然而,当我在Android设备上使用后退按钮,然后单击按钮再次显示SecondView时,SecondView会多次(5-6)添加到导航堆栈。我必须多次单击后退按钮才能返回到FirstView。
代码:
public class SecondViewModel : DreamsViewModelBase
{
private readonly IDreamsWebService _webService;
public SecondViewModel(IDreamsWebService webService)
{
_webService = webService;
}
public void Init(SecondViewModelBundle bundle)
{
Log.Log("Initializing with data: " + bundle.Data);
SecondData = bundle.Data;
}
private string _secondData;
public string SecondData
{
get { return _secondData; }
set { SetProperty(ref _secondData, value, "SecondData"); }
}
}
布局:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_firstview_top_container_coordinatorlayout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
local:layout_scrollFlags="scroll|enterAlways"
local:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<LinearLayout
android:id="@+id/firstview_content_container_linearlayout"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?attr/actionBarSize">
<EditText
android:id="@+id/firstview_edittext"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="40dp" />
<TextView
android:id="@+id/firstview_textview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="40dp" />
<Button
android:id="@+id/firstview_show_second_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</android.support.design.widget.CoordinatorLayout>
如何避免SecondView多次添加到导航堆栈?我甚至尝试设置活动标志“SingleTop”,这似乎是一个糟糕的解决方案,甚至没有工作。
答案 0 :(得分:1)
在GitHub上的项目中,您正在调用PrepareUI
活动生命周期回调中的onResume
方法。每次FirstView
恢复时(第一次打开应用程序,每次SecondView
关闭),这会添加(堆叠)相同的绑定。因此,您最终会在Show SecondViewModel按钮上使用多个绑定,这会导致多次打开viewmodel。
没有提供的方法可以清除绑定,但您可以做其他事情:
BindingSet
对象PrepareUI
方法onCreate
醇>