hsz*_*hsz 5 android android-widget typeface
是否有可能以某种方式使用Typeface从小EditText部件中的资产加载的字体定义?
您要使用的字体需要驻留在 asset/fonts 目录中,您可以像这样访问它:
Typeface myFont = Typeface.createFromAsset(getAssets(), "fonts/myfont.ttf");
edittext.setTypeface(myFont);
Run Code Online (Sandbox Code Playgroud)