I would like to customize the tab widget, replacing the style with my own style. The item I'm going to replace is as follows:
<item name="android:tabLayout">@android:layout/tab_indicator_holo</item>
But I got this error: A resource was not found that matches the specified name: attr 'android: tabLayout'
I set the parent style as follows:
<style name="customTabWidget" parent="@android:style/Widget.Holo.TabWidget">
Project goal: Android 4.0
I also cleaned up the project, but the error still comes up. How to fix the error?
Thanks in advance.
source
share