본문 바로가기

Android

안드로이드 폰트 적용 방법



Paint paint = new Paint(Paint.DEV_KERN_TEXT_FLAG);
Typeface type;
type = Typeface.createFromAsset(getContext().getAssets(), "fonts/samsunggothic.ttf");
canvas.drawText("타이틀 40px", 150, 50, paint);