尝试更改字体android studio时出错

时间:2015-07-28 12:38:01

标签: java android xml fonts compiler-errors

我正在尝试在android studio中以编程方式更改TextView的字体,我非常关注一些教程,但它一直给我错误,只是想知道是否有人有任何想法?

我遵循的问题示例:

  1. Android develop LCD font
  2. How to change the font on the TextView?
  3. TextView的:

    TextView
    android:id="@+id/settingsTitle"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Settings"
    android:layout_marginLeft="60dp"/>
    

    更改字体的代码:

    Typeface myTypeface = Typeface.createFromAsset(getApplicationContext().getAssets(), "fonts/Stocky.ttf");
    TextView settingsTitle = (TextView) findViewById(R.id.settingsTitle);
    settingsTitle.setTypeface(myTypeface);
    

    错误日志:

    Function: selinux_android_load_priority [0], There is no sepolicy file
    Function: selinux_android_load_priority [1], There is no sepolicy version file
    Function: selinux_android_load_priority , loading version is VE=SEPF_GT-I9507_4.3_0016
    selinux_android_seapp_context_reload: seapp_contexts file is loaded from /seapp_contexts
    

1 个答案:

答案 0 :(得分:0)

它没有工作,因为我正在onCreate中执行代码部分,即使我实际上正在使用片段,所以我只是删除了片段并返回使用正常活动及其现在正在工作。

感谢您的帮助。