片段-指定的子代已经有一个父代。您必须先在孩子的父母上调用removeView()


80

我收到此错误。我尝试了许多解决方案,但我无法解决。帮我!我需要使用片段将表面视图和按钮添加到活动中。

CamActivity.java:

public class CamActivity extends FragmentActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_cam);
        
        FragmentManager fm = getSupportFragmentManager();
        
        Fragment fragment = fm.findFragmentById(R.id.fragmentContainer);
        
        if(fragment == null) {
            fragment = new CamFragment();
            fm.beginTransaction()
            .add(R.id.fragmentContainer, fragment)
            .commit();
        }
    }
}

CamFragment.java:

public class CamFragment extends Fragment {

    private static final String TAG = "CamFragment";
    
    private Camera mCamera;
    private SurfaceView mSurfaceView;
    
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup parent, Bundle savedInstanceState){
    View v = inflater.inflate(R.layout.camera_fragment, parent);
    
    Button capturePic = (Button)v.findViewById(R.id.img_capture);
    capturePic.setOnClickListener(new View.OnClickListener() {
        
        @Override
        public void onClick(View v) {
            getActivity().finish();
        }
    });
    
    mSurfaceView = (SurfaceView)v.findViewById(R.id.surfaceView1);
    return v;
}

}

错误:

04-18 13:24:12.735: E/AndroidRuntime(6321): FATAL EXCEPTION: main
04-18 13:24:12.735: E/AndroidRuntime(6321): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.pack.camdictionary/com.pack.camdictionary.CamActivity}: java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1728)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1747)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.app.ActivityThread.access$1500(ActivityThread.java:155)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:993)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.os.Handler.dispatchMessage(Handler.java:130)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.os.Looper.loop(SourceFile:351)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.app.ActivityThread.main(ActivityThread.java:3814)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at java.lang.reflect.Method.invokeNative(Native Method)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at java.lang.reflect.Method.invoke(Method.java:538)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:901)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:659)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at dalvik.system.NativeStart.main(Native Method)
04-18 13:24:12.735: E/AndroidRuntime(6321): Caused by: java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.view.ViewGroup.addViewInner(ViewGroup.java:2007)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.view.ViewGroup.addView(ViewGroup.java:1902)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.view.ViewGroup.addView(ViewGroup.java:1859)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.view.ViewGroup.addView(ViewGroup.java:1839)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.support.v4.app.NoSaveStateFrameLayout.wrap(NoSaveStateFrameLayout.java:40)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:931)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:1104)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.support.v4.app.BackStackRecord.run(BackStackRecord.java:682)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.support.v4.app.FragmentManagerImpl.execPendingActions(FragmentManager.java:1467)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.support.v4.app.FragmentActivity.onStart(FragmentActivity.java:570)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.app.Instrumentation.callActivityOnStart(Instrumentation.java:1166)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.app.Activity.performStart(Activity.java:3837)
04-18 13:24:12.735: E/AndroidRuntime(6321):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1701)
04-18 13:24:12.735: E/AndroidRuntime(6321):     ... 11 more

发生异常时。在capturePic 点击或之前。
maddy d

我应该在哪里打电话给getParent?@maddy之前
Vivek

1
发布您的activity_camxml文件
maddy d

Answers:


196

尝试更换

View v = inflater.inflate(R.layout.camera_fragment, parent);

View v = inflater.inflate(R.layout.camera_fragment, parent, false);

要么

View v = inflater.inflate(R.layout.camera_fragment, null);

10
尝试避免将null作为父母传递,请使用他提到的第一个选项
Dominic Bartl 2014年

7
@sudocoder要回答你为什么?父级是您要附加资源的层次结构的根视图,LayoutInflater会自动尝试将膨胀后的视图附加到提供的根。但是,该框架已进行了检查,如果您为根传递null,它将绕过这种尝试以避免ur app崩溃。需要父级才能评估在被夸大的XML的根元素中声明的LayoutParams。在此不传递任何内容是告诉框架您不知道膨胀的xml的父视图。
Elltz 2014年


谢谢!你节省了我的时间。
告别'18

8

这个问题已经被回答了,但我仍然想补充一下添加false作为第三个参数的原因。

inflate()方法采用三个参数:

  • 要膨胀的布局的资源ID。
  • ViewGroup将成为展开布局的父级。传递容器对于系统将布局参数应用到展开的布局的根视图很重要,该根视图由展开的父视图指定。
  • 一个布尔值,指示在充气期间是否应将充气布局附加到ViewGroup(第二个参数)。(在这种情况下,这是错误的,因为系统已经在将膨胀的布局插入到容器中,如果传递true,则将在最终布局中创建冗余视图组。)

来源:http : //developer.android.com/guide/components/fragments.html


7

就我而言,我在setTransition()期间进行FragmentTransaction。下面的代码为我工作:

override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
                              savedInstanceState: Bundle?): View? {

        if(this::rootView.isInitialized){
            if(rootView.getParent() != null){
                (rootView.getParent() as ViewGroup).endViewTransition(rootView)
            }
            return this.rootView

        }

        ...

}

当您在片段之间反复切换时,由于正在进行的过渡,视图没有时间真正脱离父级,因此可能会发生这种情况。


是的,我可以确认。在我的特定情况下,我的某些片段具有沉重而复杂的用户界面,例如显示Google,MapView而用户可能经常在这些片段之间导航。由于每次都完全重新创建他们的视图很麻烦,因此我在进行视图缓存(将视图的实例保留在Fragment中并在中返回onCreateView)。但是由于两个片段之间的过渡动​​画,两个视图短暂地共存,并且如果用户导航得足够快,它将崩溃。因此,调用endViewTransition是解决方案。非常感谢,+ 1值得得到。
Mackovich

另外,顺便提一句,很奇怪,我的问题当前仅涉及运行Android 9的HUAWEI设备。但是,此问题可以在Nexus 5和其他不相关的设备上重现。为什么,我不知道......莫不是动画实现的问题恰当的EMUI OS /华为使它的是易操作太频繁?
Mackovich

这个答案是金
coolcool1994

5

我使用的是API 26.0.2,由于我为片段设置了自定义动画,因此发生了崩溃。注释掉设置自定义动画的调用,解决了该问题。

fragmentTransaction.setCustomAnimations(android.R.anim.fade_in,android.R.anim.fade_out);


非常感谢您对此发表评论。我打开了此链接,但错过了您的答案。调试花费了3天的时间。如果看不到您的答案,我本可以花更多的时间。
卡迪尔·侯赛因'18

您找到什么方法可以使用setCustomAnimations进行此工作吗?
卡迪尔·侯赛因'18

@QadirHussain对不起,侯赛因,我没有尝试。
Satheesh

2

我也遇到了这个问题,这是我的解决方案。这很容易

View v;

@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    if (v == null) {
        v = inflater.inflate(R.layout.camera_fragment, container);
    } else {
        ViewGroup parent = (ViewGroup) v.getParent();
        if (parent != null) {
            parent.removeView(v);
        }
    }
    return v;
}

希望对您有用


0

Idxml文件中为父元素和子元素(特别是自定义视图)指定可以解决问题。


0

仅供参考。在Android SDK中似乎是一个问题。

我遇到的情况与@Satheesh在SDK版本中相同:27.0.2,尝试删除setCustomAnimation似乎可行。但是要删除setCustomAnimations需要做出很多更改,我希望保留自定义动画。我要做的是将SDK升级到当前的最新版本27.1.1。它对我有用。


0

可能会有所帮助

           View customView1;
           inflater= (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
           customView1= inflater.inflate(R.layout.edit_custom_alert_window, null);     
           try {
                if(customView2.getParent()!=null)
                    ((ViewGroup)customView2.getParent()).removeView(customView2);
            }catch (Exception e){

            }

0

我在代码中进行了导航,当我从其中一个片段中单击“后退”按钮时,就会显示此错误。它解决了当nav_graph我把popUpTo相关行动秒。已完成一些操作,但未弹出任何内容。


-16

试试这个。

 ((CamActivity)getActivity()).finish();
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.