Iam currently trying to implement composite views in my app for the tablet layout, so i dont need the Viewpager and TabLayout which is used in the phone layout.
But apparently it is not as easy as i thought it would be and the examples/tutorials which i found are made for the older version of MVVMCross.
My idea was just to search for the viewpager, if it is not found in the current layout, then check for the framelayouts and show my two different viewmodels like i did with the MvxFragmentPagerAdapter for the Viewpager/Tablayout.
Is there any "clean" solution for this?
Thank you for you time!
I found a acceptable answer by using FragmentTransactions. Here is the simplified code. Though iam kinda abusing the MvxFragmentPagerAdapter.GetItem(index) here for the Fragment and ViewModel Initialization (https://github.com/MvvmCross/MvvmCross-AndroidSupport/blob/master/MvvmCross.Droid.Support.V4/MvxFragmentPagerAdapter.cs) :
If there is a better solution, dont be shy! =)
Greetings Cyriac