ToastUtil工具类
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ToastUtil工具类相关的知识,希望对你有一定的参考价值。
public class ToastUtil {
private static Toast mToast = null;
public static void showToast(Context context, String text, int duration) {
if (mToast == null) {
mToast = Toast.makeText(context, text, duration);
} else {
mToast.setText(text);
mToast.setDuration(duration);
}
mToast.show();
}
}
调用方法:
toastUtil.showToast(MainActivity.this, "tab1", Toast.LENGTH_SHORT);
以上是关于ToastUtil工具类的主要内容,如果未能解决你的问题,请参考以下文章