一、报错:
java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child’s parent first.
是在addview的时候这句报错,提示是需要removeview()父类 意思是在添加一个子view的时候,然而子view已经有自己的parent,addview的时候又添加了别的parent,要先移除后在添加。
二、解决
思路,找出parent,然后removeView 注意要先判断child.getParent() != null
if (child
.getParent() != null
) {
((ViewGroup
) child
.getParent()).removeView(child
);
}
parent
.addView(child
);