How to choose standard Android menu icons?

I want to select a standard Android menu icon based on the current version of Android the phone is running on.

Examples of icons:

enter image description here

Remember! I do not want drawables for this purpose, I need the correct icon based on the device API.

Is it possible?

+3
source share
2 answers

What is wrong with using drawings? Icons are drawings. If you use pictures R.android.drawable.*, you will get the corresponding image based on your phone (Sense, Android 2.0, Android Android 2.3, etc.).

+6
source

Look here , you should use android.R.drawable.<name>to use them.

+4

All Articles