I implemented the one application in one system and in this i am using the different styles. it works properly. But the same application code is running in the different system then i am getting the following error.
Error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.RatingBar.Small'.
How to solve this error. please can anybody help me.I used the following code for style.
Style:
<style name="reviewRatingBar2" parent="@android:style/Widget.RatingBar" >
<item name="android:progressDrawable">@drawable/review_rating_bar_full_2</item>
<item name="android:minHeight">17dip</item>
<item name="android:maxHeight">17dip</item></style>
<style name="reviewRatingBar3" parent="@android:style/Widget.RatingBar.Small" >
<item name="android:progressDrawable">@drawable/review_rating_bar_full_2</item>
<item name="android:minHeight">17dip</item>
<item name="android:maxHeight">17dip</item></style>