Top "Android-typeface" questions

Typeface specifies the typeface and intrinsic style of a font in Android.

Android - Using Custom Font

I applied a custom font to a TextView, but it doesn't seems to change the typeface. Here is my code: …

android custom-font android-fonts android-typeface
Android Typeface createFromAsset

I Have a Custom View which draws text onto the Canvas. I want to change the font to a font …

android android-fonts android-typeface
How do I specify eg. Roboto-Medium or Roboto-Black in styles.xml

Posts like this How to change fontFamily of TextView in Android suggests, that the variants of Roboto fonts you can …

android android-fonts android-typeface
create typeface from font resource id

I have tried using Typeface.createFromAsset(getAssets(),"font/myfont.ttf")); I know font directory should be in assets but in …

android fonts android-collapsingtoolbarlayout android-typeface
How to get default Typeface of Android device?

I have an Api class in my application. Inside the Api class there is a custom font that has been …

android fonts android-typeface
custom font in Android Studio

How to create custom fonts in android studio ? Im trying to use a custom font, and I've read that I …

android fonts android-typeface
Changing font in android app crashes the application - native typeface cannot be made

I am trying to include a customized font in my android application. This is the tutorial that I followed and …

android fonts android-typeface
Custom TypeFace in Kotlin Programmatically

How to set typeface of any TextView. Using java we do something like this TextView tv = (TextView) findViewById(R.id.…

android kotlin android-typeface
how to set Android Typeface from xml

Typeface fontRobo = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-Black.ttf"); viewTotalValue.setText(total.toString());

android android-typeface