我想通过用自己的样式替换样式来自定义选项卡小部件。我要更换的项目如下:
<item name="android:tabLayout">@android:layout/tab_indicator_holo</item>
但我犯了一个错误:找不到与给定名称匹配的资源:attr"android:tabLayout"
我设置了这样的父样式:
<style name="customTabWidget" parent="@android:style/Widget.Holo.TabWidget">
项目构建目标:Android 4.0
我也清理了这个项目,但错误仍然存在。如何修复错误?
提前谢谢。
我遇到了类似的问题。解决方案的至少一部分是将tabLayout属性添加到res/values/attrs.xml中
<declare-styleable name="TabWidget">
<!-- Drawable used to draw the divider between tabs. -->
<attr name="divider" />
<!-- Determines whether the strip under the tab indicators is drawn or not. -->
<attr name="tabStripEnabled" format="boolean" />
<!-- Drawable used to draw the left part of the strip underneath the tabs. -->
<attr name="tabStripLeft" format="reference" />
<!-- Drawable used to draw the right part of the strip underneath the tabs. -->
<attr name="tabStripRight" format="reference" />
<!-- Layout used to organize each tab's content. -->
<attr name="tabLayout" format="reference" />
</declare-styleable>
由于您正在覆盖,您还需要更改:
<item name="android:tabLayout">...
至:
<item name="tabLayout">...