hi i want to change my font size by using paint , canvas in android. My code is here. how can i do this ?
public class MainActivity extends Activity { @Overrid
Use this:
Typeface tf = Typeface.createFromAsset(getAssets(),"RECOGNITION.ttf"); Paint paint = new Paint(); paint.setTypeface(tf); canvas.drawText("Sample text in bold RECOGNITION",0,0,paint);