Skip to content

Commit

Permalink
should be getInt(). #912
Browse files Browse the repository at this point in the history
  • Loading branch information
cgspine committed May 7, 2020
1 parent 2c12358 commit 216308b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public QMUILayoutHelper(Context context, AttributeSet attrs, int defAttr, int de
} else if (index == R.styleable.QMUILayout_qmui_outerNormalColor) {
mOuterNormalColor = ta.getColor(index, mOuterNormalColor);
} else if (index == R.styleable.QMUILayout_qmui_hideRadiusSide) {
mHideRadiusSide = ta.getColor(index, mHideRadiusSide);
mHideRadiusSide = ta.getInt(index, mHideRadiusSide);
} else if (index == R.styleable.QMUILayout_qmui_showBorderOnlyBeforeL) {
mIsShowBorderOnlyBeforeL = ta.getBoolean(index, mIsShowBorderOnlyBeforeL);
} else if (index == R.styleable.QMUILayout_qmui_shadowElevation) {
Expand Down

0 comments on commit 216308b

Please sign in to comment.