AlertDialog.Builder 안에 텍스트 사이즈 조절하는 방법입니다.
styles.xml
<style name="AlertDialogTheme" parent="android:Theme.Dialog">
<item name="android:textSize">14sp</item>
</style>
ContextThemeWrapper cw = new ContextThemeWrapper( this, R.style.AlertDialogTheme );
AlertDialog.Builder b = new AlertDialog.Builder(cw);
http://stackoverflow.com/questions/14888832/reducing-font-size-of-alertdialog-builders-components 퍼옴~
'안드로이드' 카테고리의 다른 글
안드로이드 페이스북 연동 (0) | 2013.08.22 |
---|---|
Naver Map API를 이용한 현재위치 찾기 (0) | 2013.07.25 |
R.array 를 스트링 배열로 변환 (0) | 2013.04.18 |
Spinner 안에 텍스트 색상지정/정렬방법 (0) | 2013.04.10 |
WebView 높이 wrap_content 주는 방법 (0) | 2013.04.09 |