Commit451 / ForegroundViews

Views that supports a foreground, like FrameLayout does
Apache License 2.0
214 stars 29 forks source link

NoSuchMethodError below android 21 #6

Closed qishi604 closed 7 years ago

qishi604 commented 7 years ago

Use ForegroundRelativeLayout or ForegroundLinearLayout will crash in android 20 and below.I think because of the constructor

@TargetApi(Build.VERSION_CODES.LOLLIPOP)
    public ForegroundLinearLayout(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
        super(context, attrs, defStyleAttr, defStyleRes);

    }
Jawnnypoo commented 7 years ago

This should have been fixed in version 2.2.0. Can you verify that you are using this version and still seeing this issue?

qishi604 commented 7 years ago

Sorry! I was used the old version.

Jawnnypoo commented 7 years ago

No worries!