-1

当我在 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.xmlres/values 中不存在此错误。我该如何解决?

4

1 回答 1

0

我找到了!和工具ADT(android development tools)sdk匹配。我所有的问题都通过改变和匹配解决了

于 2015-06-21T00:25:31.617 回答