gpt4 book ai didi

java - Android textView onCreate 更改

转载 作者:行者123 更新时间:2023-12-01 19:05:09 28 4
gpt4 key购买 nike

我使用 main.xml 上的布局编辑器创建了一个名为 textView1 的 TextView 。我想使用自定义字体,因此我在 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);
}
}

我确信我错过了一些简单的东西,但这是我第一次编写 Android 代码,所以仍然摸索着。

最佳答案

TextView textView1= (TextView) findViewById(R.id.text_info);
Typeface type= Typeface.createFromAsset(getAssets(),"fonts/optima.ttf");
textView1.setTypeface(type);

关于java - Android textView onCreate 更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10360894/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com