前端之家收集整理的这篇文章主要介绍了
android – 如何检查吐司是否已经被驳回,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Toast toast = null;
if (toast == null || toast.getView().getWindowVisibility() != View.VISIBLE) {
toast = Toast.makeText(getApplicationContext(),"Text",Toast.LENGTH_SHORT);
toast.show();
}
在再次显示之前,检查烤面包是否可见.
原文链接:https://www.f2er.com/android/313383.html