Last active
October 3, 2020 23:12
-
-
Save ketzalv/d016eb6920e75b60c7e30f065640c7b2 to your computer and use it in GitHub Desktop.
strings_default_fonts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- android:fontFamily="sans-serif" // roboto regular--> | |
<!-- android:fontFamily="sans-serif-light" // roboto light--> | |
<!-- android:fontFamily="sans-serif-condensed" // roboto condensed--> | |
<!-- android:fontFamily="sans-serif-black" // roboto black--> | |
<!-- android:fontFamily="sans-serif-thin" // roboto thin (android 4.2)--> | |
<!-- android:fontFamily="sans-serif-medium" // roboto medium (android 5.0)--> | |
<string name="font_regular">sans-serif</string> | |
<string name="font_light">sans-serif-light</string> | |
<string name="font_condensed">sans-serif-condensed</string> | |
<string name="font_black">sans-serif-black</string> | |
<string name="font_thin">sans-serif-thin</string> | |
<string name="font_medium">sans-serif-medium</string> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment