1. 程式人生 > >關於打包簽名時 出現錯誤---Error:Error: Expected resource of type styleable [ResourceType]

關於打包簽名時 出現錯誤---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();