blob: 77d7c071e28939287d9c666e6979f91de0495c86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package de.androvdr.widget;
import android.content.Context;
import android.graphics.Typeface;
/**
* Created by lado on 04.05.15.
*/
public class FontAwesome {
private static Typeface mFont;
public static Typeface getFontAwesome(Context context){
if(mFont != null){
return mFont;
}
mFont = Typeface.createFromAsset(context.getAssets(), "fonts/fontawesome-webfont.ttf");
return mFont;
}
}
|