AlphaMaskLayout
AlphaMaskLayout copied to clipboard
4.4.4 oppo手机闪退
Caused by: java.lang.NoSuchMethodError: android.widget.FrameLayout.
好像只要是4.4.4手机都会有这样的问题
的确如此,作者写代码不严谨啊
https://github.com/zaaach/AlphaMaskLayout/pull/3 问题出在
public AlphaMaskLayout(Context context, AttributeSet attrs, int defStyleAttr) {
this(context, attrs, defStyleAttr, 0);
getAttrs(context, attrs);
}
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
public AlphaMaskLayout(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
getAttrs(context, attrs);
}
在Android4.4手机上,构造方法不能够调用四个参数的构造方法。作者可以merge下我修改的部分