I am trying to get a notification Toastfor display on my Nexus 7 tablet - however, they will not be displayed. I use custom posts Toaston most of my applications, but even something simple:
Toast.makeText(MyActivity.this, "generic toast message", Toast.LENGTH_LONG).show();
does not work.
I tested this application on other devices, including the Nexus 1 (2.3) phone, MyTouch (2.2) and the Acer Iconia tablet (4.0). Toast messages are displayed on all other devices except this Nexus 7 tablet (4.1).
Is there a user parameter that allows you to turn off notifications Toastin the application? Or are messages Toasthandled differently after 4.1? These are my only ideas at this time. I searched this problem on Google and did not receive any links regarding a similar problem.
source
share