github - Octicons in Android -
is there kind of icon set can used in android
contains icons similar github icons. example, events push, pull, fork, merge, comment ...
or possible in browser?
i looking use utf-8
encoding in textview
did not render properly. read it's proprietary set of utf
character codes.
just use github icons. here's assets folder official github android app including ttf font. license pretty permissive.
assuming have textview
id text
, ttf file in assets folder, can this:
textview text = (textview) findviewbyid(r.id.text); text.settext("clone \uf04c"); text.settypeface(typeface.createfromasset(getassets(), "octicons-regular-webfont.ttf"));
Comments
Post a Comment