java代码中使用字库

import android.graphics.Typeface;

mTypeface = Typeface.createFromAsset(getAssets(),"fonts/Roboto-Regular.ttf");
mTimerTextView.setTypeface(mTypeface);

其中,apk/assets/fonts/Roboto-Regular.ttf为特定的字体库

你可能感兴趣的:(java代码中使用字库)