Toast单例模式的实现,解决多个toast等待时间久的问题



public static Toast toast;
 
   
 
   
public static void showToast(String str){
   if(toast==null) {
      toast = Toast.makeText(BaseActivity.activity,str,Toast.LENGTH_SHORT);
   }
      toast.setText(str);
      toast.show();

}

你可能感兴趣的:(Toast单例模式的实现,解决多个toast等待时间久的问题)