I have a problem with my custom fonts. I change it like this:
@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();
}
But i have error : The method getAssets() is undefined for the type DigitalClock
Since you’re overriding
onFinishInflate, you’re extending aViewof some kind, it seems.Try this:
… If that doesn’t work: