Where to get Android button icons?

Widget

Well-Known Member
Licensed User
Longtime User
Where can I get standard icons for Android buttons and menus?
I'm looking for button icons for Next Page, Prev Page, Load Image, Save, Execute etc.. I'd rather use icons (bitmaps) that everyone is familiar with instead of designing my own.

TIA
Widget
 

Widget

Well-Known Member
Licensed User
Longtime User
Thanks Klaus.

That system icon program should come with B4A because Android apps that use standard icons will be easier to learn. Why re-invent the wheel and confuse the user with strange icons if system icons are already available. Hmmm. Standardizing the look and feel of Android apps. Could be a topic in a certain user's manual I've been reading?

:D

Widget
 
Upvote 0

JdV

Active Member
Licensed User
Longtime User
Android Menu Icons

This page on the Android developer website suggests taking a copy of the default icons that you want to use:
Menu Icons | Android Developers

If you want to use any icons or other internal drawable resources, you should store a local copy of those icons or drawables in your application resources, then reference the local copy from your application code.

The icons can be found in the following folder of the Android SDK:
C:\Android\android-sdk\platforms\android-14\data\res\drawable-xhdpi

Regards

Joe
 
Upvote 0
Top