If you mean that they stack up causing a delay then you should cancel the prior toast before showing a new one.
If you want something more fancy you could try using a PopupWindow instead to show the countdown, there you have more freedom for layout etc.
http://developer.android.com/reference/android/widget/PopupWindow.html
This is an answer by somebody else: https://stackoverflow.com/a/15174370/2767703
Example:
Toast toast = Toast.makeText(this, "10", Toast.LENGTH_SHORT);
toast.show();
new CountDownTimer(10000, 1000) {
public void onTick(long m) {
long sec = m/1000+1;
toast.cancel();
toast.setText("" + sec);
toast.show();
}
public void onFinish() {
// Finished
}
}.start();