我的编码似乎有什么问题?为什么字体不会改变?我已经在assets / fonts文件夹下导入了字体。有了这个我把xml和java文件连接在一起
XML文件
<TextView
android:id="@+id/txt_level1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:text="@string/level1"
android:textSize="@dimen/txtSize"
android:typeface="sans" />
JAVA文件
package com.example.basichelloworld;
import android.os.Bundle;
import android.app.Activity;
import android.widget.TextView;
import android.graphics.Typeface;
public class Level_1 extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_level_1);
//Font path
String fontPath = "assets/fonts/FaceYourFears.ttf";
//Text view label
TextView text = (TextView) findViewById(R.id.txt_level1);
// Loading Font Face
Typeface tf = Typeface.createFromAsset(getAssets(), fontPath);
// Applying font
text.setTypeface(tf);
}
}
答案 0 :(得分:3)
我认为你的字体路径应该是
String fontPath = "fonts/FaceYourFears.ttf";
您是否在资产中创建了另一个资产文件夹?
答案 1 :(得分:0)
您无法打印加载到控制台的TypeFace吗?可能是路径不正确,它不应该包含“资产/”给我的拙见。