Toast.makeText(activity, text, duration)每次會實例化一個Toast,所以
01 if (toast != null ) |
02 | { |
03 | toast.setText(text); |
04 | toast.setDuration(duration); |
05 | toast.show(); |
06 | } else |
07 | { |
08 | toast = Toast.makeText(activity, text, duration); |
09 | toast.show(); |
10 | } |
0 件のコメント:
コメントを投稿