2013-11-20 114 views
2

我想添加自定義字體到我的android應用程序。這是我的代碼。誰能告訴我我哪裏錯了?添加自定義字體到Android應用程序

@Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_main); 

     TextView textview = (TextView) findViewById(R.id.FontTest); 

     Typeface tf = Typeface.createFromAsset(getApplicationContext() 
       .getAssets(), "fonts/snap-itc.ttf"); 
     textview.setTypeface(tf); 
    } 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:paddingBottom="@dimen/activity_vertical_margin" 
    android:paddingLeft="@dimen/activity_horizontal_margin" 
    android:paddingRight="@dimen/activity_horizontal_margin" 
    android:paddingTop="@dimen/activity_vertical_margin" 
    tools:context=".MainActivity" > 
    <TextView 
     android:id="@+id/FontTest" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Font Test" 
     android:textSize="50px"/> 
</RelativeLayout> 
+0

的代碼是罰款 –

+0

代碼看起來不錯 – Ridcully

+0

的代碼是好的...是ü得到任何錯誤或異常後的那 – nitesh

回答

2

Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/snap-itc.ttf"); 

代替:

Typeface tf = Typeface.createFromAsset(getApplicationContext() 
       .getAssets(), "fonts/snap-itc.ttf"); 
+0

不能再次工作。錯誤是「本地字體無法設置」 – user3008254

+1

只將您的ttf文件置於資產文件夾中。然後將其作爲'Typeface tf = Typeface.createFromAsset(getAssets(),「snap-itc.ttf」);'。 –

0

很可能是顯而易見的,但要確保你有一個/資產/字體 FOL der在您的項目目錄中,並且您的自定義字體在那裏。另外,請檢查字體的正確拼寫(+是大寫還是小寫),並更正代碼中的拼寫。

這也可能意味着字體本身已損壞。

0

在應用程序中添加字體像

TextView txtvw=(TextView)findViewById(R.id.textviewname); 

Typeface typface=Typeface.createFromAsset(getAssets(),"fonts/burmese.ttf"); 

    txtvw.setTypeface(typface); 
相關問題