英文:
My AndroidManifest.xml is full of errors, why?
问题
这是你的翻译内容:
我正在尝试在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>
英文:
I'm trying to make my first app in Android Studio. I tried to write something on my AndroidManifest.xml that didn't work, so I deleted it again. But now my AndroidManifest.xml is full of errors and I cant run my app. I have no idea whats wrong. I dont know so much about coding. I hope someone can help me. My AndroidManifest.xml looks like this:
<?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>
答案1
得分: 2
Sure, here's the translation:
移除这个(空格或制表符),然后尝试运行你的应用。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论