Guest User

Untitled

a guest
Jun 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. Typefaces.SetFontQuranSaleem(holder.VerseArTextView);
  2.  
  3. class Typefaces
  4. {
  5. Context context;
  6. static Typeface quranFontSaleem;
  7. public Typefaces(Context context)
  8. {
  9. this.context = context;
  10. quranFontSaleem = Typeface.CreateFromAsset(context.Assets, "Fonts/QuranFontSaleem.ttf");
  11.  
  12. }
  13. public static void SetFontQuranSaleem(TextView textview)
  14. {
  15. textview.SetTypeface(quranFontSaleem, TypefaceStyle.Normal);
  16. }
  17. }
Add Comment
Please, Sign In to add comment