Toast does not show Jelly Bean

89 views Asked by At

I am having an activity and I have to show Toast message to the user. OS version is Jelly Bean, show notifications is turned on. This works on Ice Cream Sandwitch. Here is the code:

Toast.makeText(this, "Success", Toast.LENGTH_LONG).show();

Could somebody knows what is the problem?

1

There are 1 answers

0
Rosário Pereira Fernandes On

Try using this code:

Toast.makeText(getBaseContext(), "Success", Toast.LENGTH_LONG).show();