When working on the Hello, Gallery tutorial/sample app, after following the instructions on the site, Eclipse reported that R.styleable cannot be resolved.
What is the reason for this error, and how can it be fixed or worked around?
|
When working on the Hello, Gallery tutorial/sample app, after following the instructions on the site, Eclipse reported that R.styleable cannot be resolved. What is the reason for this error, and how can it be fixed or worked around?
| |||
|
feedback
|
|
Per this thread, R.styleable has been removed from android 1.5 and higher. There are a number of ways to get the sample to work, the simplest that I found was recommended by Justin Anderson in the thread linked to above:
This solution basically defines the styleable attribute as a resource of the app itself and gives it the necessary structure to work in the app. Note that the app can run fine if you just omit the two lines of code (prior to a.recycle();), all this code does is set a grey background around the images in the Gallery. | |||||||||||||||
feedback
|
|
The reason for this problem is the resources they tell you to put into res/values/attr.xml are:
But then you get this adapter, which Eclipse can't figure out and frankly makes no sense:
That's because you shouldn't have "android." preceeding the resources, the styleable name is Theme here but HelloGallery in the actual resource, and the galleryItemBackground puts android between the styleable name and the attribute like this: Theme_android_galleryItemBackground So if want the ImageAdapter method to work with the resources you're given, you should rewrite it like this:
For future problems regarding resources (R.* cannot be resolved type errors), examine /gen/R.java for what the resources are actually being named. | |||
|
feedback
|
|
A slightly easier, and certainly more MVCish way is to use the style system: If you don't have a theme yet, create a
This will define a new style which we are calling Then in an XML declaration for an ImageView, you can simply apply your
This will keep your style stuff out of your adapter code (which is good!) and allow for more generic adapters that don't need to care how you're visualizing your data. | |||||||
feedback
|
|
There are have a little error in the select answer,instead stylable with styleable It's should like this:
| ||||
|
feedback
|
|
styleable is not supported http://developer.android.com/sdk/RELEASENOTES.html The android.R.styleable class and its fields were removed from the public API, to better ensure forward-compatibility for applications. The constants declared in android.R.styleable were platform-specific and subject to arbitrary change across versions, so were not suitable for use by applications. You can still access the platform's styleable attributes from your resources or code. To do so, declare a custom resource element using a in your project's res/values/R.attrs file, then declare the attribute inside. For examples, see /samples/ApiDemos/res/values/attrs.xml. For more information about custom resources, see Custom Layout Resources. Note that the android.R.styleable documentation is still provided in the SDK, but only as a reference of the platform's styleable attributes for the various elements. | |||
|
feedback
|