5

我想通过用我自己的样式替换样式来自定义选项卡小部件。我要更换的项目如下:

 <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

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

提前致谢。

4

1 回答 1

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">...
于 2012-11-20T17:36:35.430 回答