Home > Enterprise >  Trying to find a specific Icon in the android.R.class. Is there a preview of all the images?
Trying to find a specific Icon in the android.R.class. Is there a preview of all the images?

Time:11-09

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

CodePudding user response:

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

  • Related