我的自定义字体有问题。我这样改变它:
@Override
protected void onFinishInflate() {
super.onFinishInflate();
mTimeDisplay = (TextView) findViewById(R.id.timeDisplay);
Typeface typeface = Typeface.createFromAsset(getAssets(),
"Fonts/Roboto-Light.ttf");
mTimeDisplay.setTypeface(typeface);
mAmPm = new AmPm(this);
mCalendar = Calendar.getInstance();
setDateFormat();
}
但我有错误:The method getAssets() is undefined for the type DigitalClock