This message is related to an existing logged error:
https://groups.google.com/forum/#!topic/android-developers/K7pjy3Gm5Lk/discussion
Apparently, on some devices, toasts are not displayed after updating the system. The problem occurs when in the settings for your application the notification flag is not selected. Because of this, all your toasts in your application will be hidden. This happened to me on the Samsung galaxy 2 tab, but it can happen on other devices:
Toast notifications not appearing on Nexus 7 tablet
or on SGS3, as indicated in the google group link.
I do not know if this happens on all devices with jelly bean or not.
The proposed "fixes" are suitable for me, but what if my application is downloaded by some people who do not know how to do this or do not want to activate notifications. I rely a lot on toasts in the application to inform the user about some feedback, so I see only one solution: -> IMPLEMENT MY OWN TOAST CLASS, different from the toast, but with similar behavior.
I searched around. I did not find anything that has already been done, so I ask if anyone found any custom implementations (before I myself started to code it)?
Purpose: to show a toast or replace it, even if notifications are disabled for this application.
source
share