Android: typeface

ericbyeric·2021년 6월 28일
0

Android

목록 보기
2/6
post-thumbnail

Typeface

안드로이드에서 기본적으로 제공하는 폰트 외에 내가 원하는 폰트를 적용하는 방법!

예를들어 나눔고딕 서체를 사용한다고 해보자.

Step 1 - assets폴더와 font폴더를 생성 후 다운로드 받은 서체를 font폴더 안에 넣어줘
Step 2 - New -> Folder -> Assets Folder 선택
Step 3 - Assets Folder에서 New -> Android resource directory 선택 후 Resource type으로 font선택
Step 4 - font 폴더 안에 사용희망 폰트 삽입

MainActivity.java파일에서 Typeface를 사용하여 폰트파일 선택 후 setTypeface()를 이용해서 원하는 부분에 지정하면 됨

TextView tv_fonttest = (TextView) findViewById(R.id.tv_fonttext);
Typeface typeface = Typeface.createFromAsset(this.getAssets(), "font/nanumgothicbold.ttf");

tv_fonttest.setTypeface(typeface);
    
profile
인생의 해상도를 올려볼까나

0개의 댓글