Back to project page CustomFontManager.
The source code is released under:
MIT License
If you think the Android project CustomFontManager listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.tetsu31415.customfont; //from w w w . ja v a 2s .c om public class Strings { public static final String SHARP = "sharp"; public static final String FUJITSU = "fujitsu"; public static final String FONT_DIR = "/data/fonts/"; public static final String FONT_PATH_SHARP = "/data/fonts/customfont.ttf"; public static final String FONT_PATH_FUJITSU = "/data/fonts/myfont.ttf"; public static final String FAKE_FONT_FILE = "fakefont.ttf"; public static final String FAKE_FONT_ZIP = "fakefont.zip"; public static final String CUSTOM_FONT_FILE = "customfont.ttf"; }