在android studio中,当我想生成签名 apk时,导致以下错误:
Error:Error: Expected resource of type styleable [ResourceType]
此课程为:https://github.com/astuetz/PagerSlidingTabStrip
如何解决错误?
PagerSlidingTabStrip
上课:
`值/ attrs.xml
https://github.com/astuetz/PagerSlidingTabStrip/blob/master/library/res/values/attrs.xml
答案 0 :(得分:3)
如果您正在使用签名的apk,请使用
@SuppressWarnings("ResourceType")
来取消警告。解决它。
答案 1 :(得分:0)
搜索" TypedArray"。
在课程之前添加@SuppressWarnings(" ResourceType")" TypedArray"在。 例如,
@SuppressWarnings("ResourceType")
public PagerSlidingTabStrip(Context context, AttributeSet attrs,
int defStyle) {...
}