0

I'm trying to find a specific icon from the android.R.class. Specifically the check underline used in gmail notifications. I've tried opening the R.class but it doesn't preview the icons on the left.

enter image description here

Is there a way to view all the icon images instead of using them one by one like this?

enter image description here

DIRTY DAVE
  • 2,523
  • 2
  • 20
  • 83

1 Answers1

1

You can preview the icons inside your Android SDK

Something like Android SDK/platforms/android-X/data/res/drawable-hdpi/

Here is a previous answer that should work the last one is the best.

How to preview R.drawable.* images

For Windows Solution:

The full path is

C:\Users\Me\AppData\Local\Android\Sdk\platforms\android-31\data\res\drawable-hdpi

enter image description here

DIRTY DAVE
  • 2,523
  • 2
  • 20
  • 83
avalerio
  • 2,072
  • 1
  • 12
  • 11
  • Thanks for the help. Note for windows users: The android SDK is the AppData folder which is hidden so try typing in the path instead of looking for the folder – DIRTY DAVE Nov 09 '21 at 03:06
  • A full list of the icons (I also found the one I was looking for here, which was not inside the Android Sdk) https://fonts.google.com/icons?selected=Material+Icons – DIRTY DAVE Nov 09 '21 at 03:46