build.gradle文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "io.dume.dume"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-
core:3.0.2'
}
我刚刚创建了一个新项目,并在activity_main.xml上发现了这个错误,我没有改变任何东西。有没有修复?
答案 0 :(得分:19)
我遇到了同样的问题。似乎这是一个Android Studio错误。
在你的样式xml文件中更改:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
到此:
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
适合我。
答案 1 :(得分:2)
将目标SDK版本设置为27。 将您的编译SDK版本设置为27。 并且应用程序兼容版本从28.0.0-alpha3到27.1.1。
如果您仍要使用sdk 28版
只需将alpha3替换为alpha1即可
答案 2 :(得分:1)
这在发生这种情况时对我有用,我不知道为什么它在28下不起作用:
//use this instead
compileSdkVersion 27
buildToolsVersion '27.0.3'
targetSdkVersion 27
dependencies{
//switch to these
implementation 'com.android.support:appcompat-v7:27.0.0-alpha'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:design:27.0.0'
}
答案 3 :(得分:0)
答案 4 :(得分:-1)
这对我有用。
打开,res->值-> styles.xml,在这里您将找到如下一行:
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
将其更改为:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
换句话说,将DarkActionBar更改为NoActionBar