MvvmCross-AndroidSupport
MvvmCross-AndroidSupport copied to clipboard
Android support library packages for MvvmCross: The .NET MVVM framework for cross-platform solutions.
### Steps to reproduce 1. Clone my [forked repo](https://github.com/sescandell/MvvmCross-AndroidSupport/tree/issue-fragmentAlreadyAdded) (which is a copy of the current repo only the HomeFragment file have been modified [to remove the AddToBack attribute](https://github.com/sescandell/MvvmCross-AndroidSupport/compare/master...issue-fragmentAlreadyAdded)) 2....
@martijn00 @Cheesebaron We have a number of classes where we can set an `Adapter` and there is an inconsistency between whether or not the previous adapter is 'cleared' or not....
I noticed memory leak in my project when I was using MvxFragmentStatePagerAdapter2. I tried all viewPager adapters and all of them have same problem, it seems MvxFragmentsPresenter doesn't recycle internal...
Support deprecated `Fragment.OnAttach(Activity)` in favor of `Fragment.OnAttach(Context)`. This is also true for native fragments where the latest call was added in API 23. We should probably follow suit.
Hi, ### Steps to reproduce 1. Clone my [forked repo on branch issue-customRecyclerAdapter](https://github.com/sescandell/MvvmCross-AndroidSupport/tree/issue-customRecyclerAdapter) 2. Run the application 3. Go to Example RecyclerView screen ### Expected behavior The screen should display...
See issue #204 This is a workaround trying to resolve most use cases. There might be some situations Exception is still thrown (if "home screen is dynamic" for example).
Leanback support is still far from finished. While one's already able to pull off a leanback app (yay!), there's still stuff to do. For example: - Proper bindings on most...
### Steps to reproduce 1. Create an app with only one VM and a fragment to display it (suppose the VM has one property ID) 2. From the fragment, create...
Sample project in this repo can be used to reproduce bug. ### Steps to reproduce 1. Add an override ReloadFromBundle in SettingsViewModel 2. Navigate to Settings page in app 3....
Close Fragment method is not implemented and won't work correctly until we change .Close method signature in main MvvmCross library. Reason: 1. The only information we have during .Close call...