アプリケーション[Android]font


フォントをBoldと指定するため、xmlでのみフォントを指定するのは適用されませんので、コードでも適用されます
(コードではTextViewに他の設定値を指定すべきではありません、)
フォントアクセサリ
  • リソースフォルダにフォントフォルダ(テキストres/font)
  • を作成
  • fontフォルダのttfまたはotfファイル添付ファイル
  • にダウンロード
    xmlからfontFamilyへの適用
    android:fontFamily="@font/notosanskr_bold"
    JAvaコード
    燒最新版
    Typeface typeface = getResources().getFont(R.font.notosanskr_bold);
    tx.setTypeface(typeface);
    燒版
    Typeface typeface = ResourcesCompat.getFont(requireContext(),R.font.notosanskr_bold);
    tx.setTypeface(typeface);
    kotlinコード
    燒最新版
    val typeface = resources.getFont(R.font.notosanskr_bold)
    textView.typeface = typeface
    燒版
    val typeface = ResourcesCompat.getFont(context, R.font.notosanskr_bold)
    注意:https://developer.android.com/guide/topics/ui/look-and-feel/fonts-in-xml?hl=ko#kotlin