我想在textview上使用其他字体。我已经创建了自定义textview类并创建了fonts文件夹。问题是编译后字体没有改变。我不知道我犯了什么错。希望你们能帮我解决这个问题。谢谢你提前
activity_example_one.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.khoi.androidexample.example.Example_One_Activity">
<com.khoi.androidexample.custom.TextViewBold
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/texview_bold_id"
android:text="Hello World!"/>
<com.khoi.androidexample.custom.TextViewMedium
android:layout_width="match_parent"
android:id="@+id/textview_medium_id"
android:layout_height="wrap_content"
android:text="Hello World!"/>
</LinearLayout>
Example_One_Activity.java
public class Example_One_Activity extends AppCompatActivity {
TextViewBold textViewBold;
TextViewMedium textViewMedium;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_example_one);
textViewBold = (TextViewBold) findViewById(R.id.texview_bold_id);
textViewMedium = (TextViewMedium) findViewById(R.id.textview_medium_id);
}
}
TextViewBold.java
公共类TextViewBold扩展TextView {
public TextViewBold(Context context, AttributeSet attrs, int defStyle){
super(context, attrs, defStyle);
init(context);
}
public TextViewBold(Context context,AttributeSet attrs){
super(context,attrs);
init(context);
}
public TextViewBold(Context context){
super(context);
init(context);
}
private void init(Context context) {
if (!isInEditMode()) {
Typeface tf = Typeface.createFromAsset(context.getAssets(),"Lato_Medium.ttf");
setTypeface(tf);
}
}
}
答案 0 :(得分:1)
你缺少&#34; fonts /&#34;从你的地址,它应该是这样的:
setTypeface(Typeface.createFromAsset(getContext().getAssets(),"fonts/Lato_Medium.ttf"));
答案 1 :(得分:1)
在 init(上下文关联)
中传递上下文和getAssets()一样 - &gt; context.getAssets()
Typeface tf = Typeface.createFromAsset(context.getAssets(),"Lato_Medium.ttf");
isInEditMode() - &gt;确保它将返回true
答案 2 :(得分:0)
我重新下载字体样式并替换fonts文件夹中的文件并且工作正常。非常感谢您帮助解决了这个问题