在ViewPager中,用Fragment显示页面时,报错:
java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
意思是:一个视图只能有一个父容器,必须先移除其他的父容器。
解决方法:
在使用inflate()方法加载fragment布局资源的时候,不将视图存放在ViewGroup容器中,这样在后续的ViewPager中使用Fragment时,就不会报错已经存在容器了。
在Fragment的 onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)方法中,将
View view=inflater.inflate(R.layout.fragment_language, container);
改为:
View view=inflater.inflate(R.layout.fragment_language, container,false);
或者
View view=inflater.inflate(R.layout.fragment_language, null);
为了便于理解,可以查看官网的api。inflate()方法的api如下所示:
第一种:
inflate(int resource, ViewGroup root, boolean attachToRoot)
Inflate a new view hierarchy from the specified xml resource.
第二种:
inflate(int resource, ViewGroup root)
Inflate a new view hierarchy from the specified xml resource.
更详细的解决方案,参见StackOverflow: