我正在使用setTypeface在我的应用程序中添加自定义字体,它在第一个活动中正常工作但在第二个活动中它不起作用

时间:2015-09-29 06:55:37

标签: android typeface

我正在使用' setTypeface`在第一个活动中在我的应用中添加自定义字体,但是在第二个活动中它不起作用 我的代码是这样的

Typeface tf2 = Typeface.createFromAsset(getAssets(), "fonts/eenadu.ttf");
txt=(TextView) findViewById(R.id.txtdec);
String val=intent.getStringExtra("txt");
txt.setText(val);
txt.setTypeface(tf2); 

xml代码是:

<TextView
        android:id="@+id/txtdec"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/title"
        android:textAppearance="?android:attr/textAppearanceMedium" />

提前致谢

1 个答案:

答案 0 :(得分:0)

更改此行

android:layout_below="@+id/title"

android:layout_below="@id/title"