Created
March 22, 2017 13:06
-
-
Save Mihir3646/79d92979a092193dee4c3a33a7db64ed to your computer and use it in GitHub Desktop.
Font Family
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
<?xml version="1.0" encoding="utf-8"?> | |
<font-family xmlns:android="http://schemas.android.com/apk/res/android"> | |
<font | |
android:fontStyle="normal" | |
android:fontWeight="400" | |
android:font="@font/lobster_regular" /> | |
<font | |
android:fontStyle="italic" | |
android:fontWeight="400" | |
android:font="@font/lobster_italic" /> | |
</font-family> |
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
<TextView | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:fontFamily="@font/lobster"/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment