找不到与给定名称匹配的资源:attr'android:tabLayout'

时间:2012-08-05 13:21:07

标签: android tabwidget

我想通过用我自己的风格替换样式来自定义标签小部件。 我要替换的项目如下:

 <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

我也清理了项目,但错误仍然存​​在。 如何解决错误?

提前致谢。

1 个答案:

答案 0 :(得分:2)

我遇到了类似的问题。至少部分解决方案是将tabLayout属性添加到res / values / attrs.xml。以下是从android-16平台复制的TabWidget样式的定义(注意最后的tabLayout属性):

<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">...