styleable was removed from the SDK; this shouldn't have been in the SDK,
because the values it contains change between releases.  It also is not
needed in any way for applications: these are just sets of resources that
are interesting to specific pieces of code.  You should use
<declare-styleable> in your own app to create an explicit set of resources
you want and use that.

On Thu, Mar 12, 2009 at 3:22 PM, Derek <[email protected]> wrote:

>
> Hi,
>
> I'm using the last android sdk 1.1r1. Eclipse complains about class
> android.R.styleable. I can't see R$styleable.class inside of
> android.jar\android either. But it's in the api doc. By using java
> reflection as below, android.R does have inner class called styleable.
> Could someone tell me what the problem is?
>
>        for (Class c : android.R.class.getClasses()) {
>                        if (c.getName().indexOf("styleable") >= 0) {
>                                        Log .w("!!!!!!!!!!!!!!",
> c.getName());
>                        }
>        }
>
> Thanks,
> Derek
> >
>


-- 
Dianne Hackborn
Android framework engineer
[email protected]

Note: please don't send private questions to me, as I don't have time to
provide private support.  All such questions should be posted on public
forums, where I and others can see and answer them.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to