避免连续点击吐司长时间不消失

很简单,单例即可

public class ToastUtils
{
    private static Toast toast;
    public static void showToast(Context context,String str){
        if(toast==null){
            toast = toast.makeText(context, str, Toast.LENGTH_SHORT);
        }else {
            toast.cancel();
            toast=toast.makeText(context, str, Toast.LENGTH_SHORT);
        }
        toast.show();
    }
}

你可能感兴趣的:(android,app)