我创建了一个Custom TextView来使用Font Awesome支持,当你在layout xml中添加文本(unicode 
)时,它工作正常。但是,如果我尝试使用view.setText()
动态设置我的适配器中的文本,则不应用字体。
FontView类
public class FontView extends TextView {
private static final String TAG = FontView.class.getSimpleName();
//Cache the font load status to improve performance
private static Typeface font;
public FontView(Context context) {
super(context);
setFont(context);
}
public FontView(Context context, AttributeSet attrs) {
super(context, attrs);
setFont(context);
}
public FontView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
setFont(context);
}
private void setFont(Context context) {
// prevent exception in Android Studio / ADT interface builder
if (this.isInEditMode()) {
return;
}
//Check for font is already loaded
if(font == null) {
try {
font = Typeface.createFromAsset(context.getAssets(), "fontawesome-webfont.ttf");
Log.d(TAG, "Font awesome loaded");
} catch (RuntimeException e) {
Log.e(TAG, "Font awesome not loaded");
}
}
//Finally set the font
setTypeface(font);
}
}
XML for Layout
<com.domain.app.FontView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textSize="60sp"
android:textAlignment="center"
android:text=""
android:gravity="center"
android:id="@+id/iconView"
android:background="@drawable/oval"
android:padding="10dp"
android:layout_margin="10dp" />
我的适配器
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
IconListHolder viewHolder;
if( convertView == null ) {
LayoutInflater layoutInflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = layoutInflater.inflate(R.layout.icon, null);
viewHolder = new IconListHolder(v);
v.setTag(viewHolder);
} else {
viewHolder = (IconListHolder) v.getTag();
}
//Set the text and Icon
viewHolder.textViewIcon.setText(pages.get(position).getIcon());
viewHolder.textViewName.setText(pages.get(position).getTitle());
return v;
}
private class IconListHolder {
public FontView textViewIcon;
public TextView textViewName;
public IconListHolder(View base) {
textViewIcon = (FontView) base.findViewById(R.id.iconView);
textViewName = (TextView) base.findViewById(R.id.iconTextView);
}
}
请帮忙解决我的错误。
答案 0 :(得分:6)
经过3个多小时的挣扎。我在这里找到了答案。这是unicode问题。
更改适配器setText()
以使用Html.fromHtml("").toString()
修复了问题
viewHolder.textViewIcon
.setText(Html.fromHtml(pages.get(position).getIcon()).toString());
我希望你们觉得它很有用。
答案 1 :(得分:0)
无法找到代码错误。
这是我正在使用的自定义textView。在资产文件夹中创建字体文件夹
<强> CustomText.java 强>
./components/my-widget/my-widget.html