我的AndroidManifest.xml充满错误,为什么?

问题描述

我正在尝试在Android Studio中制作我的第一个应用程序。我试图在AndroidManifest.xml上写不起作用的内容,因此再次将其删除。但是现在我的AndroidManifest.xml充满了错误,我无法运行我的应用程序。我不知道怎么了。我不太了解编码。我希望有一个人可以帮助我。我的AndroidManifest.xml看起来像这样:

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="com.example.bobbysmedicin">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".AboutActivity"></activity>
        <activity
            android:name=".MainActivity"
            android:screenorientation="landscape"/>
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

解决方法

enter image description here

删除此(空格或制表符),然后尝试运行您的应用