我的debuggingAndroidManifest.xml给我“无法解决符号错误”

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="ac.tec.oop.ahorcado.android" android:versionCode="1" android:versionName="1.0"> <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="16"/> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme"> <activity android:label="@string/app_name" android:name="ac.tec.oop.ahorcado.android.MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> </application> </manifest> 

这些行给我“不能解决符号错误”,即使它们需要被引用的包明确写入。 我试图解决这个小时,但我不知道还有什么要做。 我正在使用Android Studio,并导致了很多问题。

 android:icon="@drawable/ic_launcher android:label="@string/app_name" android:theme="@style/AppTheme"> android:name="ac.tec.oop.ahorcado.android.MainActivity"> 

转到文件>使caching失效/重新启动并失效并重新启动。

这清除了我的错误。

你的清单代码没有问题,这将正常工作

 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="ac.tec.oop.ahorcado.android" android:versionCode="1" android:versionName="1.0"> <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="16"/> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme"> <activity android:label="@string/app_name" android:name="ac.tec.oop.ahorcado.android.MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> </application> </manifest> 

有时候Eclipse会显示意外的行为,您可以将代码再次剪切并粘贴到Manifest,或者重新启动IDE,它将重新编译并删除错误

尝试在清单中的应用程序标记中添加debuggable为true

 <application android:allowBackup="true" android:debuggable="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme"> 

我希望它为你工作。

我试过所有提到的答案,但非上述为我工作
唯一的解决scheme为我工作是
进入仓库中的Gradle(App)>确保mavenCentral()在最前面,现在删除compile 'which you recently added > sync现在compile "again add the dependencies"和最后的同步
这对我有效