/*int widthWeight = attrs.getAttributeIntValue(R.attr.ratio_width_weight,0);
int heightWeight = attrs.getAttributeIntValue(R.attr.ratio_height_weight,0);*/
TypedArray a = context.obtainStyledAttributes(attrs,R.styleable.RatioImageView);
int widthWeight = a.getInt(R.styleable.RatioImageView_ratio_width_weight,0);
int heightWeight = a.getInt(R.styleable.RatioImageView_ratio_height_weight,0);
“attrs.getAttributeIntValue”未返回预期值。