Android中Toast之间快速切换(连续弹吐司)

当弹吐司的时候 , toast之间的切换会比较缓慢 , 有个等待时间 . 这里是实现快速切换 , 不需要等待时间的效果. 效果图如下:
Android中Toast之间快速切换(连续弹吐司)_第1张图片

代码:

package com.eg.lyx.shiqu;

import android.content.Context;
import android.widget.Toast;



public class ToastUtil {

    private static Toast toast;

    /** 强大的吐司,能够连续弹的吐司*/

    public static void showToast(String text, Context context){
        if(toast==null){
            toast = Toast.makeText(context, text,Toast.LENGTH_SHORT);
        }else {
            toast.setText(text);//如果不为空,则直接改变当前toast的文本
        }
        toast.show();
    }

}

你可能感兴趣的:(Android)