避免Toast重复弹出

Toast.matkText才会创建一个新的实例

private Toast toast = null;

private void checkToastResult() {
if (toast != null) {
toast.setText("没有搜索结果");
toast.setDuration(Toast.LENGTH_SHORT);
} else {
toast = Toast.makeText(context, "没有搜索结果", Toast.LENGTH_SHORT);
}
toast.show();
}
上一篇:background复合属性详解(上):background-image


下一篇:JAVA Exception