我有一个自定义的 TextView,具有个性化的字体属性:
public class TextViewPlus extends TextView {
private static final String TAG = "TextViewPlus";
public TextViewPlus(Context context) {
super(context);
}
public TextViewPlus(Context context, AttributeSet attrs) {
// This is called all the time I scroll my ListView
// and it make it very slow.
super(context, attrs);
setCustomFont(context, attrs);
}
public TextViewPlus(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
setCustomFont(context, attrs);
}
private void setCustomFont(Context ctx, AttributeSet attrs) {
TypedArray a = ctx.obtainStyledAttributes(attrs, R.styleable.TextViewPlus);
String customFont = a.getString(R.styleable.TextViewPlus_customFont);
setCustomFont(ctx, customFont);
a.recycle();
}
public boolean setCustomFont(Context ctx, String asset) {
Typeface tf = null;
try {
tf = Typeface.createFromAsset(ctx.getAssets(), asset);
setTypeface(tf);
} catch (Exception e) {
Log.e(TAG, "Could not get typeface: "+e.getMessage());
return false;
}
return true;
}
}
我在具有customFont="ArialRounded.ttf"属性的 XML 文件中使用它,它运行良好。
我在 ListView 中使用这个 TextViewPlus,填充了 ArrayAdapter。
TextViewPlus dataText = (TextViewPlus) itemView.findViewById(R.id.data_text);
dataText.setText("My data String");
我的问题是,当我滚动 ListView 时,性能很糟糕!非常缓慢且充满滞后。TextViewPlus 构造函数 n°2 在我滚动列表时一直被调用。
如果我在普通 TextView 中更改 TextViewPlus,并使用dataText.setTypeface(myFont),一切都很好并且运行良好。
如何在没有性能问题的情况下使用 TextViewPlus?