Android Studio错误格式不正确(令牌无效)

时间:2020-11-12 14:35:04

标签: android android-layout

我正在制作一个为父母商店提供网络应用商店的应用。 当我制作一个导航抽屉时(据我所知这是正确的),但它给了我一个错误: AAPT:错误:格式不正确(无效的令牌),但据我所知,我键入的所有内容均正确,并且未使用错误的令牌。完整的错误是:AndroidStudioProjects \ Pws \ app \ src \ main \ res \ layout \ activity_main.xml:19:AAPT:错误:格式不正确(无效的令牌)。

    <LinearLayout

    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"

    <include
    layout="@layout/main_toolbar"/>


<RelativeLayout
    android:layout_width="300dp"
    android:layout_height="match_parent"
    android:background="@color/achtergrond">

错误应该在

感谢您的阅读,希望你们中的一些人能帮助我。

1 个答案:

答案 0 :(得分:2)

您忘记关闭LinearLayout标签。

应该是这样的:

    <LinearLayout

    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" />

    <include
    layout="@layout/main_toolbar"/>

或类似这样:

    <LinearLayout

    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <include
    layout="@layout/main_toolbar"/>

    </LinearLayout>

取决于您要实现的目标