MvvmCross Android ViewStub
问题 I recently found a class called ViewStub that can be used to "lazy-load" a layout-resource. The usage is very straight forward: In the layout file I use: <ViewStub android:id="@+id/content_stub" android:layout_width="match_parent" android:layout_height="match_parent"/> And in my code: var stub = this.FindViewById<ViewStub>(Resource.Id.content_stub); stub.LayoutResource = Resource.Layout.FirstView; stub.Inflate(); However, this way the Bindings won't work! I know, that using mvvmcross I have