본문 바로가기

개발 노트/Kotlin

안드로이드스튜디오 font 적용하기

먼저 적용하기전에 사용할 font를 ttf확장자 형식으로 다운로드 해준다 

 

 

그런다음 res -> 우클릭 -> Android Resource Directory에 가서 Resource type과 Directory name을 font로 설정해준다. 

 

ok를 누르면 font폴더가 생성되는데, 여기에 아까 다운받은 ttf폰트 파일을 붙여넣어준다

 

 

 

이렇게 넣어줬으면 해당 font를 사용할 레이아웃에 아래와같이 fontFamily를 추가해서 font를 적용하면된다

<Button
    android:id="@+id/loginbtn"
    android:layout_width="350dp"
    android:layout_height="50dp"
    android:background="@drawable/button_radius"
    android:text="로그인"
    android:fontFamily="@font/bmjua_ttf"
    android:textSize="20sp"
    android:textStyle="bold"
    android:layout_marginTop="30dp"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/imageView" />

 

 

 

폰트가 잘 적용이된것을 확인할수있다