我有一个字体文件 love.ttf (5mb)。我已将其放入资产文件夹中。这是我的代码
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView tv=(TextView)findViewById(R.id.textView1);
Typeface tf=Typeface.createFromAsset(getAssets(),"love.ttf");;
tv.setTypeface(tf,Typeface.NORMAL);
tv.setTextSize(20);
}
main.xml 文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#4B67A1"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="おはようございます。" />
</LinearLayout>
运行的时候看不到文字!!!如何加载大字体?请帮我!谢谢