Back to project page android-iconfont.
The source code is released under:
Apache License
If you think the Android project android-iconfont 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 nl.garvelink.oss.android_iconfont.example; //from w ww . j av a2s. c o m /** * The list of Icon Glyps in your font asset. If you use icomoon.io to generate your font asset, * you can easily generate this from the JSON descriptor. */ public abstract class Icons { public static final char FA_ANGLE_DOWN = '\uf107'; public static final char FA_ANGLE_LEFT = '\uf104'; public static final char FA_ANGLE_RIGHT = '\uf105'; public static final char FA_ANGLE_UP = '\uf106'; public static final char FA_ARROWS_ALT = '\uf0b2'; public static final char FA_CIRCLE_O_NOTCH = '\uf1ce'; public static final char FA_FLAG = '\uf024'; public static final char FA_FLOPPY_O = '\uf0c7'; public static final char FA_GITHUB = '\uf09b'; public static final char FA_PAW = '\uf1b0'; private Icons() {} }