gpt4 book ai didi

android - 如何在 Android 中设置 textView 的字体?

转载 作者:行者123 更新时间:2023-11-30 04:34:00 25 4
gpt4 key购买 nike

我正在尝试将字体设置为自定义字体。该字体位于名为“fonts”的 Assets 文件夹的子文件夹中。这是我的 onCreate() 函数中的代码。 Eclipse 突然调出调试器说“找不到源”

    Typeface centuryGothic = Typeface.createFromAsset(this.getAssets(), "fonts/Century_Gothic_Bold.ttf");
TextView tv = (TextView) findViewById(R.id.TitleAct_title);
tv.setTypeface(centuryGothic);
setContentView(tv);

这是目前My main中的xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1">

<TextView
android:text="@string/TitleAct_title"
android:id="@+id/TitleAct_title"
android:textColor="#fff"
android:gravity="center_horizontal"
android:background="#347"
android:textSize="15pt"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>

</LinearLayout>
</LinearLayout>

我看不出有什么不妥。为什么会出现调试器和错误“找不到源”?

最佳答案

您看到的是 Eclipse 调试器正在寻找异常源。下次按继续,在Logcat窗口中查看异常日志。

您应该在 TextView tv = (TextView) findViewById(R.id.TitleAct_title); 之前调用 setContentView(R.layout.main);,并且可能会删除调用 setContentView(tv);

关于android - 如何在 Android 中设置 textView 的字体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7211383/

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