错误构造方法:
public H5WebViewFragment(Context context) {
this(context,null,0);
}
public H5WebViewFragment(Context context, AttributeSet attrs) {
this(context, attrs,0);
}
public H5WebViewFragment(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}
正确构造方法:
public H5WebViewFragment(Context context) {
super(context);
init();
}
public H5WebViewFragment(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public H5WebViewFragment(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}
出现这个bug的原因是因为style为0