我正在尝试将字体设置为自定义字体。该字体位于assets文件夹的子文件夹中,名为“fonts”。这是我的onCreate()函数中的代码。 Eclipse suddendly打开调试器说“源未找到”
Typeface centuryGothic = Typeface.createFromAsset(this.getAssets(), "fonts/Century_Gothic_Bold.ttf");
TextView tv = (TextView) findViewById(R.id.TitleAct_title);
tv.setTypeface(centuryGothic);
setContentView(tv);
这是我目前的主要内容中的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>
我看不出有什么不妥。为什么它会调出调试器和错误“源未找到”?
答案 0 :(得分:1)
你看到的是eclipse调试器正在寻找异常的来源。下次,按继续并在Logcat窗口中查看异常日志。
您应该在setContentView(R.layout.main);
之前致电TextView tv = (TextView) findViewById(R.id.TitleAct_title);
,并可能放弃通话setContentView(tv);
。