In my first application there is an activity using a GridView layout and an option menu. One of the menu items is “Multiselect” (the same that you can see in the standard Gallery application when you navigate a gallery). My current problem is that I can’t find the standard multiselect icon anywhere. I’ve tried the following:
- Eclipse completion capabilities by typing android.R.drawable. and inspecting the list that eclipse shows to me
- searching the
android-sdk-linux/platforms/android-X/data/res/drawable-XX -
searching https://android.googlesource.com/platform/frameworks/base/+/master/core/res/res
-
visiting http://androiddrawableexplorer.appspot.com/ and similar websites
Where can I find the multiselect icon?
Finally I got the icon. After googling a little bit I found that GridView doesn’t implement native support of multiple selection items. So the multiselect icon is not a standard Android icon and is not distributed with the SDK. The icon is part of the camera application. You can see it in CyanogenMod repo android_packages_apps_Gallery under /res/drawable-hdpi. The icon filename is ic_menu_multiselect_gallery.png.