When using setDuration for a Toast is it possible to set a custom length or at least something longer than Toast.LENGTH_LONG?
|
The values of If you want to display a message to the user for longer, consider a Status Bar Notification. Status Bar Notifications can be programmatically cancelled when they are no longer relevant. |
|||||||||
|
|
If you dig deeper in android code, you can find the lines that clearly indicate the inability of control the duration:
and default values are
|
||||
|
If you want a |
|||||||||||||
|
|
You may want to try:
to double the time. If you specify 3 instead the 2 it will triple the time..etc. |
|||||||||||||||||
|
|
The best solution to avoid fading effects between the toasts which are launched in sequence:
Here the toast is displayed approximately 10 s. Hope this helps. |
|||
|
I've coded up a helper class for doing this. You can see the code at github: https://github.com/quiqueqs/Toast-Expander/blob/master/src/com/thirtymatches/toasted/ToastedActivity.java This is how you'd display a toast for 5 seconds (or 5000 milliseconds):
|
|||||||
|
|
Here is a custom Toast class I made using the above code:
|
|||
|
|
|
I know the answer is quite late .. I had the very same issue and decided to implement my own version of bare bones Toast , after looking into android's source code for toast . Basically you need to create a new Window manager , and show and hide the window for the desired duration duration using a handler
After initialization of the layout you can use your own hide and show methods
Now all you need is to add two runnable threads which calls the handleShow() and the handleHide() which you could post to the Handler.
and the final part
This was a quick and dirty implementation .. Have not taken any performance into consideration . |
||||
|
|
|
A very simple approach to creating a slightly longer message is as follows:
Note that the above example eliminates the LENGTH_SHORT option to keep the example simple. You will generally not want to use a Toast message to display messages for very long intervals, as that is not the Toast class' intended purpose. But there are times when the amount of text you need to display could take the user longer than 3.5 seconds to read, and in that case a slight extension of time (e.g., to 6.5 seconds, as shown above) can, IMO, be useful and consistent with the intended usage. |
||||
|
|

toasttag? It looks relevant to the question.. – Shadow Wizard Nov 17 '11 at 13:00toasttag to. I thought the tags were there to help for searching and sorting andtoastis definitely a common search.androidandtoastseem perfect. – ChrisWilson4 May 1 at 3:36