Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When using setDuration for a Toast is it possible to set a custom length or at least something longer than Toast.LENGTH_LONG?

share|improve this question
1  
@Nicolae any reason you removed the toast tag? It looks relevant to the question.. – Shadow Wizard Nov 17 '11 at 13:00
2  
@ShadowWizard The tags, seems to me, should reflect the topics of the question that is of broad interest. Like for example, it's tagged android and so an android guru will find this question. Toast doesn't help this question at all and seems more like a useless tag. If toast is a good that, because the question is about Tag in Android, then also length was a good tag. Hack, every word in the question should be a tag ... No disrespect, just making my point :) – Nicolae Surdu Nov 17 '11 at 15:02
I use the toast tag to. I thought the tags were there to help for searching and sorting and toast is definitely a common search. android and toast seem perfect. – ChrisWilson4 May 1 at 3:36

9 Answers

up vote 41 down vote accepted

The values of LENGTH_SHORT and LENGTH_LONG are 0 and 1. This means they are treated as flags rather than actual durations so I don't think it will be possible to set the duration to anything other than these values.

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.

share|improve this answer
Thanks for the suggestion about the status bar, but im going with a custom dialog activity. – user268481 Feb 9 '10 at 2:59
6  
Suggestion with firing toast.show() multiple times is way better... – kape123 Sep 20 '10 at 21:56
@Dava Webb nice answer sir. +1 from myside. – Er. Nikhil Agrawal Apr 24 at 9:01

If you dig deeper in android code, you can find the lines that clearly indicate the inability of control the duration:

NotificationManagerService.scheduleTimeoutLocked() {
...
long delay = immediate ? 0 : (r.duration == Toast.LENGTH_LONG ? LONG_DELAY : SHORT_DELAY);

and default values are

private static final int LONG_DELAY = 3500; // 3.5 seconds
private static final int SHORT_DELAY = 2000; // 2 seconds
share|improve this answer
Thanks... this was EXACTLY what I needed. – mcherm Mar 10 '11 at 14:45
Thank you for posting the default values! I was afraid I wouldn't be able to find them. – Amplify91 Jul 14 '11 at 5:00
I was looking for the default toast values as well, this was the first hit. Definitely upvoted. Thanks! – Dave Nov 28 '11 at 22:43
@FeelGood how did you get the code for the android code? – Pacerier Mar 4 '12 at 2:38
6  
github.com/android – FeelGood Mar 4 '12 at 9:14

If you want a Toast to persist, I found you can hack your way around it by having a Timer call toast.show() repeatedly (every second or so should do). Calling show() doesn't break anything if the Toast is already showing, but it does refresh the amount of time it stays on the screen.

share|improve this answer
3  
2  
The problem with this is if user touches screen the toast will be hidden by Android but then recreated by timer. – Violet Giraffe Nov 2 '12 at 13:39
1  
@VioletGiraffe that's pretty trivial to handle with something like a boolean flag in your ViewGroup OnTouch event. To optimize this you should probably make your timer repeat as close to the actual time the Toast is shown on screen (3.5 seconds for long, 2 seconds for short) – zyklonSport Jan 30 at 0:14

You may want to try:

for (int i=0; i < 2; i++)
{
      Toast.makeText(this, "blah", Toast.LENGTH_LONG).show();
}

to double the time. If you specify 3 instead the 2 it will triple the time..etc.

share|improve this answer
heyyy nice try with Taost – Shubh Aug 9 '11 at 11:00
7  
+1 for an easy hack :) – Waqas May 10 '12 at 13:32
Beautiful solution :D – mammadalius Nov 15 '12 at 11:28
3  
message blinks :( – Deniz Jan 21 at 22:53
2  
This solution is bad because, e.g., if you quit the activity before the time of the toast, it will be blinking over and over... – dwbrito Feb 27 at 11:00

The best solution to avoid fading effects between the toasts which are launched in sequence:

final Toast tag = Toast.makeText(getBaseContext(), "YOUR MESSAGE",Toast.LENGTH_SHORT);

tag.show();

new CountDownTimer(9000, 1000)
{

    public void onTick(long millisUntilFinished) {tag.show();}
    public void onFinish() {tag.show();}

}.start();

Here the toast is displayed approximately 10 s.

Hope this helps.

share|improve this answer
2  
Nice work around. – Nick Aug 13 '12 at 20:29
Awesome, Simple.. Thanx @Regis_AG – Dharmik Apr 27 at 7:40

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):

Toast aToast = Toast.makeText(this, "Hello World", Toast.LENGTH_SHORT);
ToastExpander.showFor(aToast, 5000);
share|improve this answer
Thx and Nice but how can we stop the thread onDestroy for example ? I've tried to do that but not sure : public static void cancel(Toast mytoast) { if (null != t) t.stop(); mytoast.cancel(); } – hornetbzz Sep 17 '12 at 15:01
1  
Use Croutons for that @hometbzz : github.com/keyboardsurfer/Crouton – Snicolas Oct 30 '12 at 14:16

Here is a custom Toast class I made using the above code:

import android.content.Context;
import android.os.CountDownTimer;
import android.widget.Toast;

public class CustomToast extends Toast {
    int mDuration;
    boolean mShowing = false;
    public CustomToast(Context context) {
        super(context);
        mDuration = 2;
    }


    /**
     * Set the time to show the toast for (in seconds) 
     * @param seconds Seconds to display the toast
     */
    @Override
    public void setDuration(int seconds) {
        super.setDuration(LENGTH_SHORT);
        if(seconds < 2) seconds = 2; //Minimum
        mDuration = seconds;
    }

    /**
     * Show the toast for the given time 
     */
    @Override
    public void show() {
        super.show();

        if(mShowing) return;

        mShowing = true;
        final Toast thisToast = this;
        new CountDownTimer((mDuration-2)*1000, 1000)
        {
            public void onTick(long millisUntilFinished) {thisToast.show();}
            public void onFinish() {thisToast.show(); mShowing = false;}

        }.start();  
    }
}
share|improve this answer
does not work for me. Could not find why. – hornetbzz Jul 17 '12 at 0:26

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

 //Create your handler
 Handler mHandler = new Handler();

//Custom Toast Layout
mLayout = layoutInflater.inflate(R.layout.customtoast, null);

//Initialisation 

mWindowManager = (WindowManager) context.getApplicationContext()
            .getSystemService(Context.WINDOW_SERVICE);
WindowManager.LayoutParams params = new WindowManager.LayoutParams();

params.gravity = Gravity.BOTTOM
params.height = WindowManager.LayoutParams.WRAP_CONTENT;
params.width = WindowManager.LayoutParams.WRAP_CONTENT;
params.flags = WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
                | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
                | WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON;
params.format = PixelFormat.TRANSLUCENT;
params.windowAnimations = android.R.style.Animation_Toast;
params.type = WindowManager.LayoutParams.TYPE_TOAST;

After initialization of the layout you can use your own hide and show methods

    public void handleShow() {
    mWindowManager.addView(mLayout, mParams);
    }

    public void handleHide() {
        if (mLayout != null) {
            if (mLayout.getParent() != null) {
                mWindowManager.removeView(mLayout);
            }
                         mLayout = null;
        }

Now all you need is to add two runnable threads which calls the handleShow() and the handleHide() which you could post to the Handler.

    Runnable toastShowRunnable = new Runnable() {
        public void run() {
            handleShow();
        }
    };

 Runnable toastHideRunnable = new Runnable() {
        public void run() {
            handleHide();
        }
    }; 

and the final part

public void show() {

    mHandler.post(toastShowRunnable);
    //The duration that you want
    mHandler.postDelayed(toastHideRunnable, mDuration);

}

This was a quick and dirty implementation .. Have not taken any performance into consideration .

share|improve this answer

A very simple approach to creating a slightly longer message is as follows:

private Toast myToast;

public MyView(Context context) {
  myToast = Toast.makeText(getContext(), "", Toast.LENGTH_LONG);
}

private Runnable extendStatusMessageLengthRunnable = new Runnable() {
  @Override
    public void run() {
    //Show the toast for another interval.
    myToast.show();
   }
}; 

public void displayMyToast(final String statusMessage, boolean extraLongDuration) {
  removeCallbacks(extendStatusMessageLengthRunnable);

  myToast.setText(statusMessage);
  myToast.show();

  if(extraLongDuration) {
    postDelayed(extendStatusMessageLengthRunnable, 3000L);
  }
}

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.