-
[안드로이드] Toast 토스트 글자 크기 변경개발/Android 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
'개발 > Android' 카테고리의 다른 글
[안드로이드] 앱 버전명 및 버전코드 가져오기 (0) 2019.01.20 [안드로이드] style에서 앱 폰트 변경하기 (0) 2019.01.20 [안드로이드] Drawable Shape 코드로 색상 동적 변경 (0) 2019.01.17 [안드로이드] EditText 특수문자 제한 하기 (천지인키보드 ·(middle dot) 허용) (1) 2018.12.17 [안드로이드] TextView에 Html 적용하기 및 링크 설정 (0) 2018.12.10