<android.widget.TextClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:format24Hour="kk:mm"
android:textSize="50sp"
fontPath="fonts/font.otf"
/>
-> doesn't work
have to set by code
mTimeTextView.setTypeface(Typeface.createFromAsset(mContext.getAssets(), "fonts/font.otf"));
<android.widget.TextClock android:layout_width="wrap_content" android:layout_height="wrap_content" android:format24Hour="kk:mm" android:textSize="50sp" fontPath="fonts/font.otf" /> -> doesn't work have to set by code mTimeTextView.setTypeface(Typeface.createFromAsset(mContext.getAssets(), "fonts/font.otf"));