【问题标题】:Inflate Exception Inside Fragment Class片段类中的膨胀异常
【发布时间】:2017-05-20 17:45:06
【问题描述】:

我正在做一个需要片段的项目。每当我测试运行项目时,在我的片段类中,我都会收到一个指向我的 oncreateview 方法的 inflaterline 的异常,如下所示。

Process: com.example.joey.maranathahealthblog, PID: 29380
    android.view.InflateException: Binary XML file line #12: Error inflating class <unknown>
    at android.view.LayoutInflater.createView(LayoutInflater.java:633)
    at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:743)
    at android.view.LayoutInflater.rInflate(LayoutInflater.java:806)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:504)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:414)
    at com.example.joey.maranathahealthblog.BlogTabs.TabsFragments.HygieneClone.onCreateView(HygieneClone.java:27)

这是我的片段类的 sn-p

public class HygieneClone extends Fragment {


    public HygieneClone() {
        // Required empty public constructor
    }


    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment

        //  error occurs here
        return inflater.inflate(R.layout.fragment_hygiene_clone, container, false); 
    }

}

我的布局文件如下所示:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.joey.maranathahealthblog.BlogTabs.TabsFragments.HygieneClone">

<android.support.v7.widget.RecyclerView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/hygiene_recyclerView"/>

<android.support.design.widget.FloatingActionButton
    android:id="@+id/newPost_Fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:backgroundTint="@color/colorPrimary"
    android:src="@drawable/ic_add_black_24dp"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:layout_marginRight="20dp"
    android:layout_marginBottom="40dp"/>

可能是什么原因造成的,因为该异常导致应用甚至无法加载第一个屏幕。

【问题讨论】:

  • 显示fragment_hygiene_clonexml
  • 你的 gradlew 中是否编译过 "com.android.support:design:X.X.X" ?
  • @ρяσѕρєяK,就是上面显示的布局文件。
  • 我将从 xml 文件中删除每个控件,看看没有它程序是否运行良好。如果好,那么问题就直接出现在这个控件上。如果删除所有控件后保持不变,则代码必须包含错误,而不是 xml 文件。

标签: java android android-fragments inflate-exception binary-xml


【解决方案1】:

因为您没有与 android.support.design.widget.FloatingActionButton 相关的依赖项。 尝试添加—— 编译'com.android.support:design:23.2.0' 在你的 build.gradle 中

【讨论】:

  • 我已经添加了依赖,但问题仍然存在。
  • 1.按住Ctrl点击xml文件中的android.support.design.widget.FloatingActionButton,可以跳转到FloatingActionButton.java文件吗? 2.尝试清洁项目?
  • 我已尝试清理项目并再次运行该应用程序。显示相同的错误。
  • 你也遇到了 NoSuchMethodError 吗?看这个:stackoverflow.com/questions/39916850/…
猜你喜欢
  • 1970-01-01
  • 2016-04-07
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多