본문 바로가기
프로그래밍/Android

Android Toast 중복 제어하기

by CaffeLatte 2014. 4. 16.

static Toast toast;

if(toast == null) {
    toast = Toast.makeText(context, text, duration);
} else {
    toast.setText(text);
}

toast.show();

댓글