[android-developers] Re: Resource ID

2010-09-06 Thread perumal316
Thanks for the info! Regards, Perumal On Sep 6, 5:50 pm, Mark Murphy wrote: > On Mon, Sep 6, 2010 at 5:47 AM, perumal316 wrote: > > I am using the function decodeResource(Resources res, int id, > > BitmapFactory.Options opt). > > > I am using it in the following way: > > > BitmapFactory.decodeR

[android-developers] Re: Resource ID Range?

2008-04-06 Thread hackbod
The value 0 is for a null or invalid resource. All other integers are valid resource values. Fwiw, resource values are currently formatted as 0xpptt where pp is a package identifier, tt is a type identifier, and is the resource name in that package+type. But please don't count on that