Android textView 中 onCreate 方法的改变

我在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);
    }
}

什么原因呢?


红糖糍粑
浏览 455回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java