通过xml设置自定义字体在某些设备中不起作用

时间:2014-12-22 08:29:44

标签: android custom-font android-fonts

使用此link 我扩展TextView并将我的自定义字体(ComicSansMS.ttf)设置为在android kitkat 4.4中正常工作,但是在ics(micromax A89)字体中没有应用。

此代码在android kitkat 4.4中运行良好但在ics(micromax A89)中没有 - 它不会增加我的堆内存大小而且我的应用程序不会崩溃

<com.example.sample.setFont
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Large Text"
        android:textAppearance="?android:attr/textAppearanceLarge" 
        />

但是当我设置app:fontName="ComicSansMS.ttf"在ics(micromax A89)中工作正常但它增加了我的堆内存大小并且我的应用程序崩溃了。 提前谢谢。

1 个答案:

答案 0 :(得分:0)