zoukankan      html  css  js  c++  java
  • java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.

    在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:

    http://stackoverflow.com/questions/13559353/how-to-solve-for-viewpager-the-specified-child-already-has-a-parent-you-must

  • 相关阅读:
    35-高级特性之iterable与iterator
    33-高级特性之generator(1)
    34-高级特性之generator(2)
    32-高级特性之类装饰器
    什么是Autolayout
    屏幕适配
    NSTimer
    分页
    UIScrollView的缩放原理
    设置图片圆角
  • 原文地址:https://www.cnblogs.com/expiator/p/6236235.html
Copyright © 2011-2022 走看看