Created
November 28, 2018 19:54
-
-
Save octohub/060bfda4c1aaf501625cf6f2b6930bd5 to your computer and use it in GitHub Desktop.
Android OpenSans font family. More info here: https://developer.android.com/guide/topics/ui/look-and-feel/fonts-in-xml
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<font-family xmlns:android="http://schemas.android.com/apk/res/android"> | |
<font | |
android:fontStyle="normal" | |
android:fontWeight="300" | |
android:font="@font/OpenSans_Light"/> | |
<font | |
android:fontStyle="italic" | |
android:fontWeight="300" | |
android:font="@font/OpenSans_LightItalic"/> | |
<font | |
android:fontStyle="normal" | |
android:fontWeight="400" | |
android:font="@font/OpenSans_Regular"/> | |
<font | |
android:fontStyle="italic" | |
android:fontWeight="400" | |
android:font="@font/OpenSans_Italic"/> | |
<font | |
android:fontStyle="normal" | |
android:fontWeight="600" | |
android:font="@font/OpenSans_SemiBold"/> | |
<font | |
android:fontStyle="italic" | |
android:fontWeight="600" | |
android:font="@font/OpenSans_SemiBoldItalic"/> | |
<font | |
android:fontStyle="normal" | |
android:fontWeight="700" | |
android:font="@font/OpenSans_Bold"/> | |
<font | |
android:fontStyle="normal" | |
android:fontWeight="700" | |
android:font="@font/OpenSans_BoldItalic"/> | |
<font | |
android:fontStyle="normal" | |
android:fontWeight="800" | |
android:font="@font/OpenSans_ExtraBold"/> | |
<font | |
android:fontStyle="italic" | |
android:fontWeight="800" | |
android:font="@font/OpenSans_ExtraBold"/> | |
</font-family> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment