ToastUtils记录

来源:互联网 发布:人资相关书籍知乎 编辑:程序博客网 时间:2024/06/13 23:52
public class ToastUtils {    private static Toast toast;    public static void showToast(String str,Context context)    {        if(toast == null)        {            toast = Toast.makeText(context,str,Toast.LENGTH_SHORT);        }//        Log.e("NullPointer",str);        toast.setText(str);        toast.show();    }}

0 0
原创粉丝点击