Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
書体でフォントを変更しようとしています。ご覧ください。
.ttf フォント ファイルの「通貨」(テキスト ビュー) フォントを変更したいと考えています。どうすればいいですか?
<TextView ... android:typeface="sans" />
create a typeface and then to your edittext apply it as shown:-
Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "font.ttf"); editText.setTypeface(tf);