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
--~--~---------~--~----~------------~-------~--~----~
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