Hi, I want to change my font size using paint, canvas in android. My code is here. How can i do this?
public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } Canvas canvas = new Canvas(); Typeface tf = Typeface.createFromAsset(getAssets(), "RECOGNITION.ttf"); Paint paint = new Paint(); paint.setTypeface(tf); canvas.drawText("Lorem ipsum", 0, 0, paint); } }
Can any body help me solve the problem? I read some lessons, but did not stand. I read some stack posts, running into some problems.
source share