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

二进制XML文件第29行:二进制XML文件第29行:inflating类片段时出错

端木淇
2023-03-14

致命异常:java.lang.RuntimeException:无法启动activity ComponentInfo{com.test/com.Activities.ViewActivity}:Android.View.InflateException:二进制XML文件行#29:二进制XML文件行#29:在Android.app.ActivityThread.HandleLaunchActivity(ActivityThread.java:2984)在Android.app.ActivityThread.HandleLaunchActivity(ActivityThread.java:3045)在Android.app.ActivityThread.-Wrap14(ActivityThread.java)在

XML文件,

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.activities.ViewActivity">
<android.support.design.widget.AppBarLayout
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:theme="@style/AppTheme.AppBarOverlay">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>
<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    >

    <fragment class="com.fragments.ViewFragment"
        android:id="@+id/details_frag"
        tools:layout="@layout/fragment_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    </fragment>

</FrameLayout>
</android.support.design.widget.CoordinatorLayout>

共有1个答案

栾和风
2023-03-14

stacktrace显示“Error inflating class fragment”,因此布局文件中的fragment标记一定有问题。XML应该如下所示:

  <fragment 
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:name="com.fragments.ViewFragment"
        android:id="@+id/details_frag"
        tools:layout="@layout/fragment_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
  </fragment>

并检查name属性。验证您的片段位于您指定的包中,并且具有您指定的确切名称。

如果这不起作用,请发布完整的stacktrace,我将帮助解决问题。

 类似资料: