App Font - TEAMSTORMERS/STORM_Android GitHub Wiki

App Font

NotoSansCJKkr

폰트가 일괄 적용되었기 때문에 별도의 폰트 지정을 하지 않아도 됨

하지만 굵기는 별도로 지정해주어야 한다.

기본 값은 400

android:textFontWeight 사용

  • 100 : reqular
  • 400 : medium
  • 700 : bold

예제 코드

<TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Regular // textFontWeight=100"
        android:textFontWeight="100"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Medium // textFontWeight=400"
        android:textFontWeight="400"/>


    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Bold // textFontWeight=700"
        android:textFontWeight="700"/>

결과

image