mvvmlight
mvvmlight copied to clipboard
DialogService need help
on android i get error when i try to showMessage
--- End of managed Java.Lang.NullPointerException stack trace ---
java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.res.Resources$Theme android.content.Context.getTheme()' on a null object reference
at android.app.AlertDialog.resolveDialogTheme(AlertDialog.java:224)
at android.app.AlertDialog$Builder.
thanks
Even if this answer comes a little late, I still hope that it can help others. I also encountered this problem and found that I registered DialogService
instead of AppCompatDialogService
.
My Activities
inherit from AppCompatActivityBase
and not from ActivityBase
✌️