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 字体文件中的“货币”(文本视图)字体。我该怎么做?
创建一个字体,然后将其应用于您的edittext,如下所示:-
Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "font.ttf"); editText.setTypeface(tf);
<TextView ... android:typeface="sans" />