Android Toast 重复显示问题


做程序员的,基本一看api就知道,用这个可以取消上一个toast的显示,然后显示下一个,这样就能解决出现的问题。可是在测试的过程中,发现却没有想象中的那么简单,不信可以百度一下,很多很多人发现toast的cancel()方法不起作用。还是不讲具体过程,只讲结果吧。

我把toast做成了一个应用类,方便使用,大家可以直接用:


[java] view plaincopy
  1. public class ToastUtil {    
  2.     
  3.     private static Handler handler = new Handler(Looper.getMainLooper());    
  4.     
  5.     private static Toast toast = null;    
  6.         
  7.     private static Object synObj = new Object();    
  8.     
  9.     public static void showMessage(final Context act, final String msg) {    
  10.         showMessage(act, msg, Toast.LENGTH_SHORT);    
  11.     }    
  12.     
  13.     public static void showMessage(final Context act, final int msg) {    
  14.         showMessage(act, msg, Toast.LENGTH_SHORT);    
  15.     }    
  16.     
  17.     public static void showMessage(final Context act, final String msg,    
  18.             final int len) {    
  19.         new Thread(new Runnable() {    
  20.             public void run() {    
  21.                 handler.post(new Runnable() {    
  22.                     @Override    
  23.                     public void run() {    
  24.                         synchronized (synObj) {    
  25.                             if (toast != null) {    
  26.                                 toast.cancel();    
  27.                                 toast.setText(msg);    
  28.                                 toast.setDuration(len);    
  29.                             } else {    
  30.                                 toast = Toast.makeText(act, msg, len);    
  31.                             }    
  32.                             toast.show();    
  33.                         }    
  34.                     }    
  35.                 });    
  36.             }    
  37.         }).start();    
  38.     }    
  39.     
  40.     
  41.     public static void showMessage(final Context act, final int msg,    
  42.             final int len) {    
  43.         new Thread(new Runnable() {    
  44.             public void run() {    
  45.                 handler.post(new Runnable() {    
  46.                     @Override    
  47.                     public void run() {    
  48.                         synchronized (synObj) {    
  49.                             if (toast != null) {    
  50.                                 toast.cancel();    
  51.                                 toast.setText(msg);    
  52.                                 toast.setDuration(len);    
  53.                             } else {    
  54.                                 toast = Toast.makeText(act, msg, len);    
  55.                             }    
  56.                             toast.show();    
  57.                         }    
  58.                     }    
  59.                 });    
  60.             }    
  61.         }).start();    
  62.     }    
  63.     
  64. }    


原文地址:http://blog.csdn.net/tounaobun/article/details/8274276

代码的逻辑很简单。这里加了同步,这样做可以确保每一个toast的内容至少可以显示出来,而不是还没显示就取消掉了。这样做,是因为toast的内容不一定完全相同,如果没显示出来,也会有问题。

Android Toast 重复显示问题,,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。