Posts

Showing posts with the label font-family

Using Roboto font android

src:  https://stackoverflow.com/questions/34444616/how-to-use-roboto-in-xml-layout Que: I hear it often nowadays: “Roboto is the default font type”. But how do I use this default font type? What I mean specifically is that in the old days when I used to download the assets, etc., I used to have to specify things like Ans: I've already found some possibilities Using  fontfamily The simplest way would be add  fontFamily  attribute to your specific  view  like  TextView According to  How to change fontFamily of TextView in Android From android 4.1 / 4.2 / 5.0, the following  Roboto  font families are available: android : fontFamily = "sans-serif" // roboto regular android : fontFamily = "sans-serif-light" // roboto light android : fontFamily = "sans-serif-condensed" // roboto condensed android : fontFamily = "sans-serif-thin" // roboto thin (android 4.2) android : fontFamily = "sans-serif-medium...