Android Studio通货膨胀异常怎么创建

来源:爱站网时间:2022-11-11编辑:网友分享
今天为你们解决下:Android Studio通货膨胀异常怎么创建的问题,本文详细指出了所存在的问题和解决思路,有兴趣的朋友可以跟爱站技术频道小编了解下,不会让你失望的。

所以我试图为我的一项活动制作一个工具栏,所以我进行了布局并尝试包含它,但是如果有人知道哪里出了问题,我会不断收到此异常android.view.InflateException: Binary XML file line #9: You must specify a layout in the include tag: <include layout="@layout/layoutID" />,我将非常感激。

我的活动UML为

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
    tools:context=".HelpScreen">

    <include
        android:id="@+id/tbar"
        android:layout="@layout/help_toolbar"/>

    <TextView
        android:id="@+id/textView"
        android:layout_width="363dp"
        android:layout_height="648dp"
        android:fontFamily="cursive"
        android:layout_centerHorizontal="true"
        android:layout_alignParentBottom="true"
        android:padding="10dp"
        android:text="@string/firstParagraph"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.488"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.868" />

</RelativeLayout>

我的布局是

<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#fff"
    android:elevation="4dp">

</androidx.appcompat.widget.Toolbar>

提前感谢。

您的代码:

<include
    android:id="@+id/tbar"
    android:layout="@layout/help_toolbar"/>

相反,您要创建:

<include
    android:id="@+id/tbar"
    layout="@layout/help_toolbar"/>

当指定布局时,您不需要android

关于Android Studio通货膨胀异常怎么创建是解决思路,朋友们如果遇到了可以随时来参考下本文内容,爱站技术频道网站提供了不少有用的技术文章给你们,需要就关注下。

上一篇:java编程中数据文件的count值该不该增加

下一篇:将Java编程中的​​段落拆分为句子

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载