我制作了一个自定义TextView来加载字体(在我的例子中是IcoMoon字体)。我的自定义TextView类如下所示:
public class CustomTextView extends TextView {
public CustomTextView(Context context) {
super(context);
init(context);
}
public CustomTextView(Context context, AttributeSet attrs) {
super(context, attrs);
init(context);
}
public CustomTextView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init(context);
}
@SuppressWarnings("NewApi")
public CustomTextView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
init(context);
}
/**
* Load and apply font for this widget
*
* @param context to initialize
*/
private void init(Context context) {
Typeface font = Typeface.createFromAsset(context.getAssets(), "icomoon.ttf");
if(font != null)
setTypeface(font);
}
}
在我的布局文件中,我使用了以下类:
<com.test.CustomTextView
android:id="@+id/txt_about_hotel_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="@color/textColorPrimary" />
当我在布局中使用此类并设置文本以显示字体图标时,一切顺利。现在,当我尝试在Activity类中使用此类来设置字体图标时,问题就开始了:
CustomTextView txtHotelIcon = (CustomTextView) findViewById(R.id.txt_about_hotel_icon);
txtHotelIcon.setText("");
现在问题是,如果我在XML布局中设置字体字符,它可以很好地工作,并且字体图标是可见的。但是当我尝试在运行时设置此字体文本值时,它会显示确切的文本而不是显示字体图标。
请建议我如何解决此问题。
答案 0 :(得分:0)
您应该在代码中使用其他格式
CustomTextView txtHotelIcon = (CustomTextView) findViewById(R.id.txt_about_hotel_icon);
txtHotelIcon.setText("\ue020");
答案 1 :(得分:0)
据我所知,TextView
不直接支持HTML表示法,因此您可以尝试以下方法之一:
setText(Html.fromHtml(""))
setText("\uE020")
尚未尝试使用图标字体,因此它们可能无效。