facebook twitter hatena line email

Android/独自font

提供: 初心者エンジニアの簡易メモ
2018年11月2日 (金) 12:12時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==独自フォントをテキストに表示するサンプル== コード TextView textView = findViewById(R.id.text01); Typeface font = Typeface.createFromAsset(getAs...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

独自フォントをテキストに表示するサンプル

コード

TextView textView = findViewById(R.id.text01);
Typeface font = Typeface.createFromAsset(getAssets(), "fonts/font.ttf");
textView.setTypeface(font);
textView.setText("font\uF107");

レイアウト

<TextView
           android:id="@+id/text01"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:text="Hello World!" />

フォントを置く場所

src/main/assets/font/hoge.ttf