Image search in android.R.drawable

I am looking for system-wide graphics, which (I think) is in android.R.drawable. I am looking for this one:

Android Graphic

I understand that graphics are different between systems, however I am sure that it is systemic because I saw it in several programs.

I want to use one Android to make my application look good, no matter what phone it is running on. Does anyone know where I can find this image for use in my program?

+4
source share
2 answers

Taking a look at Android R Drawables , it seems like it could be expander_ic_minimized.9

+6
source

You can find these images in the Android SDK directory under

platform / Android-X / data / RES / hood-Ydpi

where X is the Android version code, and Y is the resolution (l / m / h). Most images are in the mdpi folder.

It is recommended that you copy the images to the application, as Android developers do not guarantee that all images will be in future releases.

The image you are looking for looks like

expander_ic_minimized.9.png

+6
source

Source: https://habr.com/ru/post/1345377/


All Articles