当前位置: 首页 > 知识库问答 >
问题:

android FragmentPagerAdapter中的MapFragment。看法膨胀异常:二进制XML文件行#8:inflating类片段时出错[重复]

薛飞星
2023-03-14

我无法解决这个问题android.view.InflateException。这里我有3个选项卡,它们是使用FragmentPagerAdapter创建的,前两个选项卡包含一般列表,第三个是GoogleMap。它在第一次正确加载,在这里,如果我导航回第一个选项卡并返回第二个或第三个选项卡,应用程序会通过说来制动android.view.InflateException:二进制XML文件行#8:错误inflating类片段

我已经在Gist中添加了代码,请检查以下链接应用程序代码

共有2个答案

应和悦
2023-03-14
@Override
  public View onCreateView(LayoutInflater inflater, ViewGroup container,
      Bundle savedInstanceState) {
    if (view != null) {
      ViewGroup parent = (ViewGroup) view.getParent();
      if (parent != null)
        parent.removeView(view);
    }
    try {
      view = inflater
          .inflate(R.layout.frag_pending_map, container, false);
    } catch (InflateException e) {
      return view;
    }
    return view;
  }
陈宏胜
2023-03-14

布局检查行#8 xml代码中可能有不正确的xml元素

 类似资料: