0

書体でフォントを変更しようとしています。ご覧ください

.ttf フォント ファイルの「通貨」(テキスト ビュー) フォントを変更したいと考えています。どうすればいいですか?

4

2 に答える 2

0
<TextView
    ...
    android:typeface="sans"
/>
于 2012-09-29T21:00:48.513 に答える
0

create a typeface and then to your edittext apply it as shown:-

Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "font.ttf");   
editText.setTypeface(tf);
于 2012-09-29T20:51:07.350 に答える