2015-07-28 67 views
0

我想在android studio中以編程方式更改TextView的字體,ive緊跟一些教程,但它一直給我錯誤,只是想知道如果任何人有任何想法?問題錯誤嘗試更改字體android studio

例子我如下:

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

的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 
+0

您發佈的行是您的「錯誤日誌」與您的應用程序無關。請解釋「一直給我錯誤」的含義。 – CommonsWare

+0

你已經放置了字體文件? –

+0

logcat吐出這些錯誤,即時通訊抱歉,如果他們不相關我不知道,也是我的字體文件是在src /主資產文件夾 –

回答

0

,這是行不通的,因爲我在OnCreate做代碼的一部分,即使我被實際使用的片段,所以我剛剛刪除了片段,然後回到正常的活動和現在的工作狀態。

感謝您的幫助。