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.
我一直在尝试在我的应用程序中使用此链接显示马拉地语字体。但是有些它对我不起作用。它没有错误,但在文本视图中不显示任何字体。当我第一次尝试这样做时,我开始了解国际化概念。
TextView info=(TextView)findViewById(R.id.textview); Typeface face= Typeface.createFromAsset(this.getAssets(), "fonts/FontAwesome.otf"); info.setTypeface(face); info.setText("TypeFace");