You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is still there (there is no new update). This bug could be reproduced If you are starting and activity for result while showing this toast and go back to the main activity.
A workaround which is working for me is "waiting a little bit" before launching the activity and cancel the toast:
AppMsg.cancelAll();
android.os.Handlerhandler = newandroid.os.Handler();
handler.postDelayed(newRunnable() {
@Overridepublicvoidrun() {
// Start your activity for result here
}
}, 200);
It's totally an ugly solution but hope helps someone. Cheers
Tried cancelAll, but it keeps messages up forever. Didn't look into this, but give it a try.
The text was updated successfully, but these errors were encountered: