I want to change the font face and styles in android. How to do this? Am using emulator. Is this possible to change in emulator. Is there any permissions available to do tha
if u want to use custom font jus download .ttf file and put the file into assets folder and use like this:
TextView tv=(TextView)findViewById(R.id.textView); Typeface tf = Typeface.createFromAsset(getActivity().getAssets(), "fonts/arial.ttf"); tv.setTypeface(tf);