I want to display toast less than Toast.LENGTH_SHORT, as i feel its taking around 2 seconds. i want to display toast only for half second.
And what is time interval for Toast.LENGTH_SHORT and Toast.LENGTH_LONG ?
|
|
You can't do it. There are only two possible values:
Setting other values doesn't work. If duration not equals 1 (
In sources of
but I can't find way to do this. |
|||
|
|
This is worked for me
|
||||
|
|
|
See my suggested solution here. You basically call toast.cancel() after a specified delay that is shorter than the standard toast duration. |
|||
|
|
|
it will work.
|
|||
|
|
|
This seems to work for me (set the duration to whatever you want):
|
|||