致命异常: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>
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,我将帮助解决问题。
我刚刚实现了我的第四个选项卡到我的应用程序中,已经实现了谷歌地图。在此实现之前,我的应用程序运行良好,但现在当我更改选项卡时,它会崩溃。我在这里看到过类似的问题,但没有一个有答案(实际上有这么多不同的原因和回应这个问题) 下面是fragmentshouts_maps类 查看寻呼机适配器类 这是我的错误日志
我想添加一个对象LinearLayout,但它抛出一个错误错误行:在me.solo_team.futureleader.ui.news.NewsFragment.onCreateView(NewsFragment.java:62)(addElement(uris.get(i),names.get(i));) 新闻片段 fragment_news: mews_新闻。xml: 错误: E/Androi
我知道类似这样的问题已经得到了回答,但我似乎已经做了教程建议和阅读其他帖子,但我仍然得到了充气机错误。不知道我做错了什么。请检查代码。多谢. test_frag.xml 我也试图支持蜂巢前的版本,我想我正在导入所有的支持库。
我有一点问题,如果我的谷歌地图应用程序。我的应用程序中有三个按钮;“打开谷歌地图”、“摄像头”和“触摸”。当应用程序拉努克时,它会直接进入Google Maps屏幕,在此之前一切都很好,但当用户在Google Maps屏幕上并再次单击Google Maps按钮时,应用程序崩溃,我的logcat中出现以下错误; 它说我的xml文件在第33行有错误,但根据我的经验和我在网上搜索发现的,这就是我应该如何
这里是MainActivity类 我的LogCat文件是 求你了,救命