码迷,mamicode.com
首页 > 其他好文 > 详细

fragment The specified child already has a parent. You must call removeView()

时间:2015-04-10 17:15:52      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

在切换Fragment的时候出现:The specified child already has a parent. You must call removeView()异常。

错误主要出在Fragment中的oncreateview方法中。

可能引起错误的写法:

View view = inflater.inflate(R.layout.indexfragment_layout, container);

  正确写法:

View view = inflater.inflate(R.layout.indexfragment_layout, container,
				false);

  具体原因暂不详,希望知道的同学告知一下,谢谢。

fragment The specified child already has a parent. You must call removeView()

标签:

原文地址:http://www.cnblogs.com/tony-yang-flutter/p/4414902.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!