Android Studio导出apk错误:错误:类型为styleable的预期资源[ResourceType]

时间:2016-05-07 12:52:25

标签: android android-studio android-resources

在android studio中,当我想生成签名 apk时,导致以下错误:

Error:Error: Expected resource of type styleable [ResourceType]

此课程为:https://github.com/astuetz/PagerSlidingTabStrip

如何解决错误?

PagerSlidingTabStrip上课:

https://github.com/astuetz/PagerSlidingTabStrip/blob/master/library/src/com/astuetz/PagerSlidingTabStrip.java

`值/ attrs.xml

https://github.com/astuetz/PagerSlidingTabStrip/blob/master/library/res/values/attrs.xml

2 个答案:

答案 0 :(得分:3)

如果您正在使用签名的apk,请使用

@SuppressWarnings("ResourceType")来取消警告。解决它。

答案 1 :(得分:0)

搜索" TypedArray"。

在课程之前添加@SuppressWarnings(" ResourceType")" TypedArray"在。 例如,

 @SuppressWarnings("ResourceType")
    public PagerSlidingTabStrip(Context context, AttributeSet attrs,
                                int defStyle) {...

}