The specified child already has a parent. You must call removeView() on the child’s parent first.
@Override
public View createView(LayoutInflater inflater, ViewGroup container) {
//添加到fragmentManger中第三个参数必须是 false
rootView = inflater.inflate(R.layout.fragment_kits_video_comments, container, false);
return rootView;
}