首页 > 解决方案 > 请帮帮我,它在 [row,col]:[9,43] 处显示 ParseError 消息:预期的开始或结束标签 受影响的模块:app

问题描述

我尝试了很多选项,但是任何对此错误有想法的人都无济于事,请帮助我在 [row,col]:[8,43] 处显示 ParseError 消息:预期的开始或结束标签 受影响的模块:应用程序这是我的 androidManifest.xml文件

     <?xml version="1.0" encoding="utf-8"?>
<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.nazretzimare"
    android:versionCode="1"
    android:versionName="1.0">
    <application>
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@drawable/book"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".SplashActivity">
            <intent-filter>
                <action
                    android:name="android.intent.action.MAIN" />
                <category
                    android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name= ".ListViewBlogPost"
            android:theme="@android:style/Theme.Dialog">
            <intent-filter >
                <category
                    android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name=".ListViewBlogPost2"
            android:theme="@android:style/Theme.Dialog">
            <intent-filter>
                <category
                    android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name=".Activity_Seting"
            android:theme="@android:style/Theme.Dialog">
            <intent-filter>
                <category
                    android:name="android.intent.category.DEFAULT"/>
            </intent-filter>
        </activity>
        <activity
            android:name=".About"
            android:theme="@android:style/Theme.Dialog"/>
        android:name=".MainActivity"/>
    </application>
    </manifest>

标签: javaandroidgradle

解决方案


推荐阅读