Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of available icons?

When I used an Activity Template in Android Studio I got a Navigation View where the following icons were used:

<item ... android:icon="@drawable/ic_home_black_24dp" ... />
<item ... android:icon="@drawable/ic_dashboard_black_24dp" />
<item ... android:icon="@drawable/ic_notifications_black_24dp" />

I'm not very familiar with Android so my question is where I can find a list of all available icons (and if the list differs for different Andriod versions etc).

like image 816
Stefan Avatar asked Nov 08 '17 14:11

Stefan


People also ask

How many icons are there in Font Awesome?

Upgrade To Font Awesome Pro Font Awesome Pro gives you 19,287 icons in 68 categories across six styles + brands.


1 Answers

  1. Select the desired icon here. For example, you need info icon. Look at what section is the icon. See that, the info icon is in the Action section.
  2. Find XML-file by icon name here. Open Action folder. XML-files for Android in these folders: drawable-anydpi-v21. We need file ic_info_black_24dp.xml
  3. Copy ic_info_black_24dp.xml to you Android studio project to folder app/res/drawable.
  4. Use icon

    <item ... android:icon="@drawable/ic_info_black_24dp" />

like image 131
ArkadiBernov Avatar answered Nov 07 '22 03:11

ArkadiBernov