【发布时间】:2020-02-23 09:30:50
【问题描述】:
所以我正在尝试为我的一项活动制作一个工具栏,因此我制作了布局并尝试包含它,但我不断收到此异常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>
提前致谢。
【问题讨论】: