清单文件说存在问题并且"无法解析符号@ drawable / ic_launcher"还有很多其他人。有趣的是,像android:screenOrientation="portrait" doesn
这样的人声明了错误。
有一段代码:
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name="com.needtogo.Interface.MainActivity"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.needtogo.Interface.AutorizationActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode"
android:icon="@drawable/ic_launcher"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoTitleBar"
android:windowSoftInputMode="stateVisible|adjustResize" >
</activity>
<activity
android:name="com.needtogo.Interface.RegistrationActivity"
android:icon="@drawable/ic_launcher"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoTitleBar" >
</activity>
<activity
android:name="com.needtogo.Interface.OrderActivity"
android:icon="@drawable/ic_launcher"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="com.needtogo.Interface.TimeActivity"
android:icon="@drawable/ic_launcher"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Translucent.NoTitleBar" >
</activity>
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="" />
</application>
答案 0 :(得分:3)
我有同样的问题。你应该看看settings.gradle。如果你没有这个包括:include':app',你应该添加它并重新同步gradle。
希望它能帮到你
答案 1 :(得分:0)
如果您有drawable(ic_launcher在您的res文件夹中),那么您可能只是没有建立项目。
尝试清理/编译循环,看看是否可以构建项目。问题是Android无法构建R类,这就是这些引用所在的位置。
答案 2 :(得分:0)
通过res / drwawable文件夹放置一个名为ic_launcher的图像,然后清理你的项目它将正常工作。