我一直在使用Jake Wharton 的 ViewPagerIndicator,目前正在尝试在我的一个片段上实现自定义字体。我试过使用这段代码:
TextView txt = (TextView) findViewById(R.id.Zipcode);
Typeface font = Typeface.createFromAsset(getAssets(), "fonts/customfont.ttf");
txt.setTypeface(font);
在onCreate
导致 logcat 中出现空指针异常的主要活动中,偶尔typeface cannot be made
. 我还尝试在片段本身中设置字体,onCreate
然而onCreateView
,findViewById
并且getAssests()
是片段范围内的未知方法。
我无法确定字体是问题还是我试图设置字体的位置不是问题。