您的位置:首页 > 其它

关于打包签名时 出现错误---Error:Error: Expected resource of type styleable [ResourceType]

2017-12-01 09:28 519 查看
今天打包签名时出现下面的错误---- Error:Error: Expected resource of type styleable [ResourceType]。



解决方法

@SuppressWarnings("ResourceType") //加上这个注释 忽略该警告 就可以编译打包签名
public AlignTextView(Context context, AttributeSet attrs) {
super(context, attrs);
setTextIsSelectable(false);

int[] attributes = new int[]{android.R.attr.lineSpacingExtra, android.R.attr.lineSpacingMultiplier};
TypedArray arr = context.obtainStyledAttributes(attrs, attributes);
lineSpacingAdd = arr.getDimensionPixelSize(0, 0);
lineSpacingMultiplier = arr.getFloat(1, 1.0f);
originalPaddingBottom = getPaddingBottom();
arr.recycle();
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐