我在main.xml上使用 Layout Editor创建了一个textview名称是textView1。
我想使用一个自定义的字体,所以我在onCreate方法中创建了下面的代码,但是好像不能识别textView1。
package com.mystraldesign.memorable; import android.app.Activity; import android.graphics.Typeface; import android.os.Bundle; public class MemorableActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); Typeface type = Typeface.createFromAsset(getAssets(),"fonts/optima.ttf"); textView1.setTypeface(type); } }
什么原因呢?
相关分类