Toast——Utils

来源:互联网 发布:淘宝链接生成淘口令 编辑:程序博客网 时间:2024/05/22 13:17
import android.content.Context;import android.widget.Toast;/** * 创建人:LiShan * 邮箱:cnlishan@163.com * 创建时间:2016/12/7 * 版权所有违法必究 */public class ToastUtils {    private static Toast toast;    /**     * 静态toast     * @param context     * @param text     */    public static void showToast(Context context, String text) {        if (toast == null) { // 1. 创建前 2.消失后toastnull            toast = Toast.makeText(context, text, Toast.LENGTH_SHORT);        }        toast.setText(text);        toast.show();    }    public static void showToast(String s) {        showToast(UiUtils.getContext(),s);    }}
0 0
原创粉丝点击