我可以在 android 的编辑文本中使用 font-awesome 吗?

Can i use font-awesome in android's edittext?

我已将 font-awesome .tff 文件添加到 assets 文件夹,初始化了 strings.xml 文件中的一些图标,更改了我将在其中使用 font-awesome 的实体的字体并尝试使用 font - 很棒的按钮,它工作,但我对 edittexts 做了同样的事情,但有数字字符串而不是图标。知道我能做什么吗?

答:你直接在xml中设置字符串就好了:
android:text="&#xf042"; 并使用 edittext 中设置的字体,例如

Typeface font_awesome =  Typeface.createFromAsset(getAssets(),"fontawesome-webfont.ttf");
app_menutxt.setTypeface(font_awesome);

在程序中:app_menutxt.setText("\uf042");