Gomdori

[Android] 안드로이드 - 토스트(Toast) 메시지 띄우기. 본문

코딩(Coding)

[Android] 안드로이드 - 토스트(Toast) 메시지 띄우기.

Ghomdori 2020. 2. 26. 17:21

짧게 띄우기

Toast.makeText(this.getApplicationContext(),"띄울 메시지", Toast.LENGTH_SHORT).show();

길게 띄우기

Toast.makeText(this.getApplicationContext(),"띄울 메시지", Toast.LENGTH_LONG).show();

Comments