Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create custom font family with bold font

Tags:

android

I'm trying to create custom font family using this doc https://developer.android.com/guide/topics/ui/look-and-feel/fonts-in-xml.html The problem in that that there is no bold attribute and I can not set it programmatically Fonts in XML?

like image 583
Near1999 Avatar asked Jan 15 '18 14:01

Near1999


People also ask

How do you make font bold?

Type the keyboard shortcut: CTRL+B.

How do I use multiple font family in CSS?

Start with the font you want, and always end with a generic family, to let the browser pick a similar font in the generic family, if no other fonts are available. Note: Separate each value with a comma. Note: If a font name contains white-space, it must be quoted.


1 Answers

Set 700 as the fontWeight value for your font in bold.

As it's in the font resources documentation:

The most common values are 400 for regular weight and 700 for bold weight.

In the lobster font family example you linked it would be:

<!-- bold --> <font     android:fontStyle="normal"     android:fontWeight="700"     android:font="@font/lobster_bold" /> 

And, if you are using support lib:

<!-- bold --> <font     app:font="@font/lobster_bold"     app:fontStyle="normal"     app:fontWeight="700" /> 
like image 100
jeprubio Avatar answered Sep 22 '22 16:09

jeprubio