font_droid_sans.xml 817 B

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <font-family xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto">
  4. <!-- normal -->
  5. <font
  6. android:font="@font/droid_sans"
  7. android:fontStyle="normal"
  8. android:fontWeight="400"
  9. app:font="@font/droid_sans"
  10. app:fontStyle="normal"
  11. app:fontWeight="400"/>
  12. <!-- italic -->
  13. <font
  14. android:font="@font/droid_sans"
  15. android:fontStyle="italic"
  16. android:fontWeight="400"
  17. app:font="@font/droid_sans"
  18. app:fontStyle="italic"
  19. app:fontWeight="400"/>
  20. <!-- bold -->
  21. <font
  22. android:font="@font/droid_sans"
  23. android:fontStyle="normal"
  24. android:fontWeight="700"
  25. app:font="@font/droid_sans"
  26. app:fontStyle="normal"
  27. app:fontWeight="700"/>
  28. </font-family>