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

今天打包签名时出现下面的错误---- 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();


发布了13 篇原创文章 · 获赞 2 · 访问量 9312

猜你喜欢

转载自blog.csdn.net/sinat_35344680/article/details/78683222