Android中如何防止Toast重复弹出相同的信息?

  1. http://www.dewen.org/q/6493

  2. private Toast mToast;
  3.     public void showToast(String text) {  
  4.         if(mToast == null) {  
  5.             mToast = Toast.makeText(MobileSendTopicActivity.this, text, Toast.LENGTH_SHORT);  
  6.         } else {  
  7.             mToast.setText(text);    
  8.             mToast.setDuration(Toast.LENGTH_SHORT);  
  9.         }  
  10.         mToast.show();  
  11.     }  
  12.       
  13.     public void cancelToast() {  
  14.             if (mToast != null) {  
  15.                 mToast.cancel();  
  16.             }  
  17.         }  
  18.       
  19.     public void onBackPressed() {  
  20.             cancelToast();  
  21.             super.onBackPressed();  
  22.         } 

你可能感兴趣的:(Android中如何防止Toast重复弹出相同的信息?)