2

Does android studio come with material design icons and if so, where are there? There seem to a few plugins around. But I think I came across a library of icons in android studio but can't remember where!

Gabriele Mariotti
  • 320,139
  • 94
  • 887
  • 841
flutter
  • 6,188
  • 9
  • 45
  • 78
  • 1
    Possible duplicate of [Import material design icons into an android project](http://stackoverflow.com/questions/28684759/import-material-design-icons-into-an-android-project) – mpkuth Jan 16 '16 at 00:28

2 Answers2

9

In Android Studio

File > New > Vector Asset Here you can choose an existing icon or import a local SVG file

Roberto
  • 4,524
  • 1
  • 38
  • 30
2

In my experience Android Studio doesn't provide an own material design icons pack.

There is a plugin that can help you to generate a set of icons from an image:

Also you can use the official icon pack provided by Google:

Of course you can import the icons that you need in your projects, but not inside the Android Studio resources in general.

Gabriele Mariotti
  • 320,139
  • 94
  • 887
  • 841
  • 1
    Good plugin! You can also install it directly in Android Studio via Preferences/Plugins. Click Browse repositorys, type Material in the search box and you will see the plugin. – prograde Jul 10 '15 at 11:48