Android 工具类ToastUtil

Toast工具类。方便、快速地弹出Toast

具有以下优点:
1. 全局只有一个Toast实例,避免频繁弹框
2. 可通过Aadpter管理Toast开关
3. 子线程可直接调用

    public final class ToastUtil {

    private static ToastAdapter mAdapter;
    private static Toast mToast;

    public static void showToast(Context context, String msg) {
        showToast(context, msg, Toast.LENGTH_SHORT);
    }

    public static void showToast(Context context,@StringRes int resId){
        showToast(context,resId,Toast.LENGTH_SHORT);
    }

    public static void showToast(Context context,@StringRes int resId,int duration){
        showToast(context,context.getResources().getText(resId),duration);
    }

    public static void showToast(Context context, CharSequence msg,int duration){
        boolean b = mAdapter == null || mAdapter.displayable();
        if (!b)
            return;
        if (Looper.getMainLooper() == Looper.myLooper())
            obtainAndShowToast(context, msg, duration);
         else
            showToastOnUiThread(context, msg, duration);
    }

    public static void cancelToast() {
        boolean b = mToast!=null && (mAdapter == null || mAdapter.cancellable());
        if (!b)
            return;
        mToast.cancel();
    }

    public interface ToastAdapter {
        boolean displayable();
        boolean cancellable();
    }

    public static void setToastAdapter(ToastAdapter adapter) {
        mAdapter = adapter;
    }

    private static void showToastOnUiThread(final Context context, final CharSequence msg, final int
            duration) {
        new Handler(Looper.getMainLooper()).post(new Runnable() {
            @Override
            public void run() {
                obtainAndShowToast(context, msg, duration);
            }
        });
    }

    @SuppressLint("ShowToast")
    private static void obtainAndShowToast(final Context context, final CharSequence msg, final int
            duration) {
        if (mToast == null) {
            mToast = Toast.makeText(context.getApplicationContext(), msg, duration);
        } else {
            mToast.setText(msg);
            mToast.setDuration(duration);
        }
        mToast.show();
    }

}

代码不多,浅显易懂。

猜你喜欢

转载自blog.csdn.net/weixin_38261570/article/details/81027065