当我在 AndroidManifest.xml 中创建一个 android 应用程序项目时出现错误 ecureandroid:theme="@style/AppTheme"
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.azzzz"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="19"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
</application>
</manifest>
我认为发生此错误是因为styles.xml
res/values 中不存在此错误。我该如何解决?