728x90
assets/fonts 폴더를 생성한 후 폰트를 추가한 후, 아래 코드를 통해 폰트를 적용시킨다.
TextView text=(TextView)findViewById(R.id.text);
Typeface type=Typeface.createFromAsset(getAssets(),"fonts/fontfile.ttf");
text.setTypeface(type);
728x90
'프로그래밍 > Android(Java)' 카테고리의 다른 글
[Android] AsyncTask 여러개를 동시에 병렬적으로 실행하는 방법. (0) | 2019.09.29 |
---|---|
[Android] Intent 전환 효과 주기 (0) | 2019.09.29 |
[Android] Intent flag를 이용하여 인텐트의 동작 방식 지정 (0) | 2019.09.29 |
[Android] 타이틀바, 알림바 제거하여 꽉찬 화면 구현하는 법 (0) | 2019.09.29 |
[Android] 가속도계 센서 구현 (0) | 2019.09.29 |
댓글