Skip to content

Instantly share code, notes, and snippets.

@t-kashima
Last active August 29, 2015 14:23
Show Gist options
  • Select an option

  • Save t-kashima/caa41a6b618d904f01c7 to your computer and use it in GitHub Desktop.

Select an option

Save t-kashima/caa41a6b618d904f01c7 to your computer and use it in GitHub Desktop.
Icon font
<TextView
android:id="@+id/activity_main_frame_001"
android:text="&#xf040;"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
TextView textView = (TextView)findViewById(
R.id.activity_main_frame_001);
Typeface typeFace = Typeface.createFromAsset(getAssets(),
"fontawesome-webfont.ttf");
textView.setTypeface(typeFace);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment