개발/Android
[안드로이드] Toast 토스트 글자 크기 변경
라보떼
2019. 1. 17. 14:24
간단하게 토스트의 글자 크기를 변경 하는 방법 입니다.
Toast toast = Toast.makeText(this,"'뒤로'버튼을 한번 더 누르시면 종료됩니다.", Toast.LENGTH_SHORT);
ViewGroup group = (ViewGroup)toast.getView();
TextView msgTextView = (TextView)group.getChildAt(0);
msgTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 16);
toast.show();
Toast Custom 참고
http://developer.android.com/guide/topics/ui/notifiers/toasts.html#CustomToastView