How to write Toast message in Android I just started learning Android development
what is the right way to write Toast message in java Android
For further actions, you may consider blocking this person and/or reporting abuse
For further actions, you may consider blocking this person and/or reporting abuse
Vadym Kazulkin -
Sota -
Patrick -
Bishwa Poudel -
Top comments (3)
You haven't given context in your code. Try this:
If you want to make your
Toast
appear for a long time then replaceLENGTH_SHORT
withLENGTH_LONG
.Read more about
Toast
and its alternatives at developer.android.com/guide/topics....You can also use getApplicationContext() instead of MainActivity.this
Thanks Dibas