We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f96007e commit 9fb0178Copy full SHA for 9fb0178
MvvmCross.Droid.Support.V4/MvxFragmentStatePagerAdapter2.cs
@@ -10,6 +10,7 @@
10
using Java.Lang;
11
using String = Java.Lang.String;
12
using MvvmCross.Droid.Shared.Attributes;
13
+using MvvmCross.Platform.Droid.Platform;
14
15
namespace MvvmCross.Droid.Support.V4
16
{
@@ -52,7 +53,7 @@ public override Fragment GetItem(int position, Fragment.SavedState fragmentSaved
52
53
if (mvxFragment == null)
54
return fragment;
55
- if (mvxFragment.GetType().IsFragmentCacheable(fragment.Activity.GetType()) && fragmentSavedState != null)
56
+ if (mvxFragment.GetType().IsFragmentCacheable(Mvx.Resolve<IMvxAndroidCurrentTopActivity>().Activity.GetType()) && fragmentSavedState != null)
57
58
59
var viewModel = CreateViewModel(position);
0 commit comments