Trevor Balcom

Results 12 comments of Trevor Balcom

Have you looked at [MvxNotifyTask](https://www.mvvmcross.com/documentation/advanced/mvxnotifytask)? There is a small example in the docs showing how to show/hide a view via binding based on the running state of the task.

You can temporarily work around the issue by directly referencing Microsoft.Extensions.Logging 5.0.0. That's working for me on Android.

This is still a problem with Visual Studio 2017 15.9.5/Xamarin.Android 9.1.5.0. Deleting bin & obj folders changes nothing. Upgrading Android Support packages from 27.0.2.1 to 28.0.0.0 triggers the problem. The...

The issue is fixed in Visual Studio 2019 16.0.0 (with designer 4.17.4.413) but still broken in Visual Studio 2017 15.9.11 (with designer 4.16.30).

I've debugged this on 6.2.2 develop branch and found PropertyChanged isn't being fired when the EditText is cleared because an exception is being thrown: > SetValue failed with exception -...

The generic `public override void Prepare` is called in Mvx 5.5 but not the override with the navigation parameters `public override void Prepare(NotificationModel parameter)`.

I've found I can use a `PendingIntent` which triggers a `BroadcastReceiver` which then uses the `IMvxNavigationService` to navigate to the ViewModel when an Android notification is clicked. It's not ideal...

Here's a working solution for an Android app using one activity and multiple fragments: For starters you want to specify the singleTop launch mode for your activity: ```csharp [Activity(LaunchMode =...

I'm having the same problem. I've rolled back to 3.0.5 for now.

I've updated from 3.1.0 to 3.1.1 but the problem still remains.