Hi all, I was writing a kind of custom views that should be packaged in a jar file to be used in other applications. So I have added some attributes to my custom widgets in order to uses the related values in my widgets constructor. The problem is that in the controller I am executing this king of instructions: scrolling = arr.getBoolean(R.styleable.ScrollTextView_setScrolling, false);
Notice that I am referencing R.styleable class. This is fine when I use my widgets directly in my application because it can see R class. Now, if I want to export my widgets in a separate jar file. so there will not be an R class and there's not the attributes declaration XML file. It will certainly refuse to compile!!! Is there a way to export R.java and /re/values/attrs.xml ??? If not is there a way to tell java compilator not to look for R.class ??? Thank you. Best regards, Houcem -- 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

