What is the best approach when using default Android drawables? Should I use android.R.drawable or should I copy the drawables in my project and use R.drawable?

Is there any risk, that in a newer version of Android, some of the default drawables are removed or resized? Or, affect in some negative way, the look of my app? Also, which of the drawables in the Android source code are considered "stable" and should be relied on?

I'd rather not copy the drawables because I think that the look of the app should be consistent with the Android version used. So, for example, for version 1.6 it should use the default Android bitmaps for version 1.6.

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

If you read through any of the discussions on the android development group you will see that they discourage the use of anything that isn't in the public SDK because the rest is subject to extensive change.

link|improve this answer
So, basically, anything from developer.android.com/reference/android/R.drawable.html can be used directly without copying? – kaciula Jul 8 '10 at 13:53
Yes... that is what I would think. – androidworkz Jul 8 '10 at 18:34
feedback

As far as i remember, the documentation advises against using the menu icons from android.R.drawable directly and recommends copying them to your drawables folder. The main reason is that those icons and names can be subject to change and may not be available in future releases.

Warning: Because these resources can change between platform versions, you should not reference these icons using the Android platform resource IDs (i.e. menu icons under android.R.drawable). 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. In that way, you can maintain control over the appearance of your icons, even if the system's copy changes.

from: http://developer.android.com/guide/practices/ui_guidelines/icon_design_menu.html

link|improve this answer
1  
Hmm. Can you provide a link in the documentation? – kaciula Jul 8 '10 at 12:12
I found the link: developer.android.com/guide/practices/ui_guidelines/… – kaciula Jul 9 '10 at 6:58
Hi, So what is the conclusion? To copy or not to copy? This answer sounds convincing to actually copy, but all others advise against it. – kiki Oct 12 '10 at 12:56
Beware that some drawables are modified by manufacturers, and will look different on different phones. Motoblur uses red highlighting instead of orange, so drawables like checkmarks and buttons (some of which are even in R.drawable) will be inconsistent if you make a copy. – pydave Dec 2 '10 at 23:08
feedback

Better you copy and move them to your own resources. Some resources might not be available on previous Android versions. Here is a link with all drawables available on each Android version thanks to @fiXedd

link|improve this answer
Thanks for the useful link. However, I am not convinced that I should copy them to my own resources. – kaciula Jul 8 '10 at 10:21
The link is broken. Could you please explain in your answer what was it about or redirect the hyperlink to the right location, please. – M.Sameer Jan 17 at 14:34
In the provided link, you could see what's available for each version. Just wanted to show how some icons might not be available for old versions. So it's better to copy and move them to your project's resources. This link might help as well: androiddrawableexplorer.appspot.com – ggomeze Jan 18 at 14:57
Or androiddrawables.com (lets you view the drawables by android version). – fiXedd Feb 7 at 15:27
feedback

Better to use android.R.drawable because it is public and documented.

link|improve this answer
feedback

To use the default android drawable resource, no need copy anything.. you can just import it first with..

import android.R;

but i will make your own resources will have an error if you want to use it. The error will be something like:

R. cannot be resolved

So, I prefer not to import android.R but import *my.own.package*.R;

then when I can normally use my own resource with R.drawable.*something* without error, and put android.R.*something_default* to use the default android resources.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.