カスタム フォントに問題があります。私は次のように変更します:
@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