您好我在我的应用中使用自定义Typeface
并使用以下代码:
public Typeface font;
//Activity on create:
font = Typeface.createFromAsset(getAssets(),"DINOT-Medium.otf");
TextView tv = (TextView)vi.findViewById(R.id.textView1);
tv.setTypeface(font);
问题是在一段时间后它出现了问题:文本无法再被阅读,只有正方形可见。你知道为什么会这样吗?怎么修好? 感谢
答案 0 :(得分:3)
像这样创建自定义TextView
:
public class DINOTMediumTextView extends TextView {
public DINOTMediumTextView(Context context) {
super(context);
setCustomFont(context);
}
public DINOTMediumTextView(Context context, AttributeSet attrs) {
super(context, attrs);
setCustomFont(context);
}
public DINOTMediumTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
setCustomFont(context);
}
private void setCustomFont(Context context) {
Typeface tf = Typeface.createFromAsset(context.getAssets(), "fonts/DINOT-Medium.otf");
setTypeface(tf);
}
}
将字体文件放在assets/fonts/
中(在资源文件夹中创建一个文件夹)
然后在你的布局xml:
<com.yourapp.views.DINOTMediumTextView
android:id="blabla"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
com.yourapp.views
是包含DINOTMediumTextView
类的包的名称。
答案 1 :(得分:1)
On Mobiletuts +有关于Android文本格式的非常好的教程。快速提示:Customize Android Fonts
编辑:现在自己测试一下。这是解决方案。您可以使用名为fonts的子文件夹,但它必须位于assets文件夹而不是res文件夹中。所以assets/fonts
还要确保字体结尾我的意思是字体文件本身的结尾都是小写的。换句话说,它不应该是myFont.TTF而是myFont.ttf