每当编译应用程序出现此错误时。这个问题就在这个应用程序中。我已经开发了其他应用程序,它们没有问题,但每当我编译这个项目时,这个错误就会开始。
gradle file is this:
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "cme.ws.com.ws.cme"
minSdkVersion 8
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.0.0'
}
error portion is this:
android:theme="@style/AppTheme">
答案 0 :(得分:0)
检查资源文件夹下值下的样式文件夹。
存在此代码,如果不添加它...并使用AppCompatActivity。
如果存在,请检查您的清单文件并在您的应用程序级别添加主题
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
试试这个
转到构建&gt;在Android Studio中重建项目
答案 1 :(得分:0)
转到res / values / styles.xml
添加此代码。
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<color name="colorPrimary">#1a2a3a</color>
<color name="colorPrimaryDark">#0e1720</color>
<color name="colorAccent">#1AB394</color>
现在清理并重建您的项目,问题将得到解决。