个人Android开发Utils工具类集合

ToastUtils工具类

用于调试信息提示

package com.Lee.wechat.utils;

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

/**
 * @创建者     李佳奇
 * @创建时间   2020年7月24日22:17:18
 * @描述      Toast工具类
 *
 */

public class ToastUtils {
    /**
     * @创建者      李佳奇
     * @创建时间    2020年7月24日22:18:01
     * @属性类型    String,Context
     * @属性名称    text,context
     * @依赖包      android.widget.Toast | android.content.Context
     * @描述       自定义Toast并在子线程中显示调试信息
     *
     */
    public static void showToastSafe(final Context context, final String text){
        ThreadUtils.runInUIThread(new Runnable() {
            @Override
            public void run() {
                Toast.makeText(context,text,Toast.LENGTH_LONG).show();
            }
        });
    }
}

未完待续……

个人Android开发Utils工具类集合

上一篇:android错误之Can't create handler inside thread that has not called Looper.prepare()


下一篇:tcp_wrapper