No Resource Found That Matches The Given Name '@android:style/widget.appcompat.light.actionbar.solid.inverse'
Sorry for my english. I try change action bar collor. And i have this error: error: Error retrieving parent for item: No resource found that matches the given name '@android:sty
Solution 1:
Try @style/Widget.AppCompat.Light.ActionBar.Solid.Inverse
instead .
On a side note, the styles.xml
file on appcompat_v7 suggests that @style/Widget.AppCompat.Light.ActionBar.Solid.Inverse
is deprecated. @android:style/Widget.DeviceDefault.Light.ActionBar.Solid.Inverse
is an alternative.
Solution 2:
I had this problem in my v21\styles.xml file.
Answer :
parent="Widget.AppCompat.Light.ActionBar.Solid.Inverse"
Solution 3:
This works for me
<stylename="AppBarStyle"parent="@android:style/Widget.DeviceDefault.Light.ActionBar.Solid.Inverse">
Post a Comment for "No Resource Found That Matches The Given Name '@android:style/widget.appcompat.light.actionbar.solid.inverse'"