1

每次我创建一个 TextView 并为其设置一个文本时,AS-Editor 都会抛出一个错误:“Header expected - Manifest file doesn't end with a final newline”

编码:

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />

AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="eu.myurl.myproject"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="18" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="eu.myurl.myproject.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

创建新项目时,该错误已经存在。硬编码字符串也不起作用。

为什么会发生这种情况以及可以做些什么?

我使用带有 JRE 的 Android Studio 0.2.7:1.7.0_21

4

1 回答 1

3

单击带有红线的单词(导致上述错误)单击 Alt+Enter 并选择

Un-inject Language/Reference

而已!至少这对我来说对同样的错误有用

于 2014-11-01T20:53:45.380 回答