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通货膨胀异常怎么创建是解决思路,朋友们如果遇到了可以随时来参考下本文内容,爱站技术频道网站提供了不少有用的技术文章给你们,需要就关注下。
您可能感兴趣的文章
- Android Studio常用快捷键功能说明
- 详解android studio 3.0 gradle 打包脚本配置的方法
- Android Studio 3.0被调方法参数名提示的取消方法
- Android Studio 超级简单的打包生成apk的方法
- Android Studio多渠道打包套路
- Android Studio导入项目非常慢的解决方法
- 如何使用Android studio开发gradle插件
- [在Studio.xml文件中添加工具栏时,Android Studio RecyclerView不会显示我的数据
- 当我在layout.xml文件中添加工具栏时,Android Studio Recycler视图将不会显示我的数据
- 如何让Enum在android studio调试器中评估为null