Toast messages are used to display some error/warning or informational message on your Android Application. You cannot set an int value to the duration for which you want the Toast message visible when shown. There are only two possible values you can add Toast.LENGTH_LONG or Toast.LENGTH_SHORT to the duration parameter of method makeText()
Setting duration Android Toast
public void displayLongDurationToastMessage(String message) {
Toast myToastLong;
myToastLong.makeText(MainActivity.this, message, Toast.LENGTH_LONG);
myToastLong.show();
}
public void displayShortDurationToastMessage(String message) {
Toast myToastShort;
myToastShort.makeText(MainActivity.this, message, Toast.LENGTH_SHORT);
myToastShort.show();
}
⚡️ You can also use int value 0 for Short and 1 for Long toast message duration.
This is not an AI-generated article but is demonstrated by a human.
Please support independent contributors like Code2care by donating a coffee.
Buy me a coffee!

Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!