我正在使用' 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" />
提前致谢
答案 0 :(得分:0)
更改此行
android:layout_below="@+id/title"
到
android:layout_below="@id/title"