Android更换字体

Typeface typefaceLatoLight = Typeface.createFromAsset(
context.getAssets(), "fonts/LatoLatin-Light.ttf");

TextView title = (TextView)findViewById(R.id.title);
title.setTypeface(CoCoinUtil.typefaceLatoLight);

你可能感兴趣的:(Android更换字体)