Error: No resource found that matches the given name: attr 'listViewStyle'
I have tried everything from here. Nothing is working.
I have imported AP
Changing the manifest's android:targetSdkVersion value to the correct version solved it for me.
I resolved the same issue by adding
android:theme="@style/AppTheme"
within application tag in the AndroidManifest.xml file. This will recognize the app theme.
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:debuggable="true" >
<activity
...
</activity>
...
</application>
Have your written exactly this?
<item name="android:listViewStyle">
I have faced a similar issue even with the correct settings in Properties etc. It seems a problem with Eclipse. I have removed the content of the xml files, then "save", then enter again the values i.e.
<style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">
and "save" again.
You can refer to the Holo theme as parent="@android:style/Theme.Holo"
, but to use the Holo Theme you have to set the build target in your manifest to API level 11 or later, also you have to put the style.xml
file containing the Holo theme to the folder values-v11
Just delete the HOLO as this resource is not available for that API Level
parent="android:Theme.Light"