You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
错误
java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
出错抛异常源码:
ViewGroup
if (child.getParent() != null) {
throw new IllegalStateException("The specified child already has a parent. " +
"You must call removeView() on the child's parent first.");
}
错误
java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
出错抛异常源码:
ViewGroup
使用场景
创建Fragment页面与viewpager关联
Fragment加载数据,先展示loading,再关闭
推测原因
看代码应该是这段代码出的问题,求解
The text was updated successfully, but these errors were encountered: