クレイジーなToast、複数回のtoast連続弾によるページカートン現象を解決
toast , toast , , Toast
private Toast toast=null;
protected void showShortToast(String text) { if (toast==null){ toast=Toast.makeText(getApplicationContext(), text, Toast.LENGTH_SHORT); }else { toast.setText(text); } toast.setGravity(Gravity.CENTER,0,60); toast.show(); }