[android-developers] Re: Getting a complete list of android native drawables

2009-05-28 Thread Darshan
I realize this thread has been dead for a couple of months, but I just composed a list of drawables from android.R.drawable. I left out all the NinePatch drawables; these are just the ones that might be suitable for use as icons. Anyway, here's the link:

[android-developers] Re: Getting a complete list of android native drawables

2009-03-22 Thread Mariano Kamp
+1 for written guide lines. Also I think it's a bad idea that every vendor can opt for its own look and feel and I hope they don't. However I am aware, that this ship has sailed. It still feels strange though to have an application platform that enables and encourages the deployement of 3rd party

[android-developers] Re: Getting a complete list of android native drawables

2009-03-22 Thread sm1
excellent advice, thanks: So back to the whole issue of menu icons... if there are standard menu icons you want to use, I recommend just copying them out of the platform source and into your app, so you can make sure that the other icons you design remain consistent with them. the old UI

[android-developers] Re: Getting a complete list of android native drawables

2009-03-22 Thread selmo
Hmmm. Honestly, I found the screamingpengiun page far more helpful, even if it's unofficial and therefore possibly risky. The official list of resources is so terse and lacks any imagery that I find it mostly useless. It gives no more information than the editor's javadoc context completion

[android-developers] Re: Getting a complete list of android native drawables

2009-03-21 Thread Edward Falk
On Mar 20, 7:38 am, gsmd gsm...@gmail.com wrote: I'd suggest to check out the sources from git search for .pngs there. At least, that's what I did. That's a very bad idea. If they're not part of the documented API, they could very easily go away again on the next os release. Using

[android-developers] Re: Getting a complete list of android native drawables

2009-03-21 Thread Marco Nelissen
On Fri, Mar 20, 2009 at 7:42 AM, Mark Murphy mmur...@commonsware.com wrote: That list is...  very questionable.  It contains lots and lots of resources that are not in the public SDK, and which you should not be using. Then how about pointing us to a list that isn't questionable?  Or at

[android-developers] Re: Getting a complete list of android native drawables

2009-03-21 Thread Mark Murphy
Marco Nelissen wrote: On the other hand, you might be better off using your own copy of the system icons. For example, if you were to use system icons plus some additional ones in the same style that you made yourself, your application's menus will look weird if the system icons are

[android-developers] Re: Getting a complete list of android native drawables

2009-03-21 Thread Dianne Hackborn
Hi Mark, I think there are two things being mixed here: you mention a number of times the basic user interaction model of not having a close menu item, but seem to be equating that with not having a standard look for menu icons across all applications. To me, these are really different things.

[android-developers] Re: Getting a complete list of android native drawables

2009-03-20 Thread Faber Fedor
On Thu, Mar 19, 2009 at 10:16 PM, Dianne Hackborn hack...@android.comwrote: That list is... very questionable. It contains lots and lots of resources that are not in the public SDK, and which you should not be using. Then how about pointing us to a list that isn't questionable? Or at least

[android-developers] Re: Getting a complete list of android native drawables

2009-03-20 Thread gsmd
I'd suggest to check out the sources from git search for .pngs there. At least, that's what I did. On Mar 20, 2:43 am, Agus agus.sant...@gmail.com wrote: Does anyone has a complete list of native drawables listed on a webapage ? I don't want to do trial and error.. Any help is appreciated.

[android-developers] Re: Getting a complete list of android native drawables

2009-03-20 Thread Bonifaz
Have a look at android-sdk-windows-1.1_r1\tools\lib\res\default \drawable. I suppose these are the public drawables. On Mar 20, 3:42 pm, Mark Murphy mmur...@commonsware.com wrote: That list is...  very questionable.  It contains lots and lots of resources that are not in the public SDK,

[android-developers] Re: Getting a complete list of android native drawables

2009-03-20 Thread Pd
Why not have a look at the res/drawable folder in the android.jar. gsmd wrote: I'd suggest to check out the sources from git search for .pngs there. At least, that's what I did. On Mar 20, 2:43 am, Agus agus.sant...@gmail.com wrote: Does anyone has a complete list of native drawables

[android-developers] Re: Getting a complete list of android native drawables

2009-03-20 Thread Paper Coder
To think of the day of work I could've saved if I known these were there. So much for my custom icons :) On Fri, Mar 20, 2009 at 11:02 PM, Pd lotusscr...@gmail.com wrote: Why not have a look at the res/drawable folder in the android.jar. gsmd wrote: I'd suggest to check out the sources

[android-developers] Re: Getting a complete list of android native drawables

2009-03-20 Thread Dianne Hackborn
As with other resources, the official list of public resources is here: http://developer.android.com/reference/android/R.drawable.html Note that a lot of these are actually things like state list drawable XML files, which map to some set of multiple underlying images that you can not directly

[android-developers] Re: Getting a complete list of android native drawables

2009-03-20 Thread Dianne Hackborn
On Fri, Mar 20, 2009 at 9:02 AM, Pd lotusscr...@gmail.com wrote: Why not have a look at the res/drawable folder in the android.jar. That is what the originally referenced page shows (though a somewhat older version), but many of those are not in the public SDK. -- Dianne Hackborn Android

[android-developers] Re: Getting a complete list of android native drawables

2009-03-20 Thread Mark Murphy
As with other resources, the official list of public resources is here: http://developer.android.com/reference/android/R.drawable.html Note that a lot of these are actually things like state list drawable XML files, which map to some set of multiple underlying images that you can not

[android-developers] Re: Getting a complete list of android native drawables

2009-03-20 Thread Mariano Kamp
http://mgmblog.com/2008/12/12/listing-androids-drawable-resources/ In the code referenced above the author's code iterates over android.R.drawable and puts the result in a list. It is a bit more illustrative as you can actually see the icons. Also when looking for what's what and how should you

[android-developers] Re: Getting a complete list of android native drawables

2009-03-20 Thread Dianne Hackborn
Thanks for the pointer, that's nice! Might be useful to contribute to ApiDemos or DevTools. On Fri, Mar 20, 2009 at 1:01 PM, Mariano Kamp mariano.k...@gmail.comwrote: http://mgmblog.com/2008/12/12/listing-androids-drawable-resources/ In the code referenced above the author's code iterates

[android-developers] Re: Getting a complete list of android native drawables

2009-03-20 Thread Mariano Kamp
Sorry if I wasn't clear, but I am not the author. Having said that I'll post a comment on his blog with a reference to this thread. On Fri, Mar 20, 2009 at 9:52 PM, Dianne Hackborn hack...@android.comwrote: Thanks for the pointer, that's nice! Might be useful to contribute to ApiDemos or

[android-developers] Re: Getting a complete list of android native drawables

2009-03-20 Thread Paper Coder
Might be better to send him an email. The comment might be missed? On Sat, Mar 21, 2009 at 3:57 AM, Mariano Kamp mariano.k...@gmail.comwrote: Sorry if I wasn't clear, but I am not the author. Having said that I'll post a comment on his blog with a reference to this thread. On Fri, Mar 20,

[android-developers] Re: Getting a complete list of android native drawables

2009-03-19 Thread Mark Murphy
Does anyone has a complete list of native drawables listed on a webapage ? I don't want to do trial and error.. Any help is appreciated. There's this list, which has been accurate for all the images I've used: http://www.screaming-penguin.com/info/android_drawables/android_drawables.html --

[android-developers] Re: Getting a complete list of android native drawables

2009-03-19 Thread Agus
I've checked that one out, that's for Android 1.0 which is old. On Thu, Mar 19, 2009 at 5:47 PM, Mark Murphy mmur...@commonsware.com wrote: Does anyone has a complete list of native drawables listed on a webapage ? I don't want to do trial and error.. Any help is appreciated. There's this

[android-developers] Re: Getting a complete list of android native drawables

2009-03-19 Thread Mark Murphy
I've checked that one out, that's for Android 1.0 which is old. Not that old. Are there any you've found that do not work? -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Coder's Guide to Android Development_ Version 2.0 Available!

[android-developers] Re: Getting a complete list of android native drawables

2009-03-19 Thread Dianne Hackborn
That list is... very questionable. It contains lots and lots of resources that are not in the public SDK, and which you should not be using. On Thu, Mar 19, 2009 at 5:47 PM, Mark Murphy mmur...@commonsware.comwrote: Does anyone has a complete list of native drawables listed on a webapage