0

I have a MVC 5 internet application that uses Bootstrap 3.0. I have a android application that links into a webservice for the internet application.

My question is this: Where are the Bootstrap glyph icons stored? I wish to add some of these glyph icons to my android application, yet cannot find the files for these glyph icons.

Thanks in advance.

Simon
  • 7,991
  • 21
  • 83
  • 163

1 Answers1

1

The glyphicons are part of Bootstrap, you don't really need to worry about it. If you look through their fantastic documentation you can simply reference them through classes. EG:

<button><span class="glyphicon glyphicon-cog"></span></button>

This would make a simple button with the "cog" icon from bootstrap. You can browse through alternatives to use as you wish.

Dunney
  • 91
  • 2
  • 11