为了账号安全,请及时绑定邮箱和手机立即绑定

Android textView 中 onCreate 方法的改变

Android textView 中 onCreate 方法的改变

红糖糍粑 2019-03-14 18:15:50
我在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);     } }什么原因呢?
查看完整描述

2 回答

  • 2 回答
  • 0 关注
  • 454 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信