Android 字体设置(tff、ttc格式的字体)

效果图:

Android 字体设置(tff、ttc格式的字体)_第1张图片
image.png

字体放置的位置

image.png

实现代码

        /**
         *字体设置
         */
        Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/hksrzt.ttc");
        mTvJlsm.setTypeface(typeface);
        mTvJlsm1.setTypeface(typeface);
        mTvJlsm2.setTypeface(typeface);
        mTvJlsm3.setTypeface(typeface);
        mTvJlsm4.setTypeface(typeface);

你可能感兴趣的:(Android 字体设置(tff、ttc格式的字体))