无法加载 AppCompat ActionBar 并出现未知错误? [英] Failed to load AppCompat ActionBar with unknown error?

查看:23
本文介绍了无法加载 AppCompat ActionBar 并出现未知错误?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

build.gradle 文件

build.gradle file

    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 上发现了这个错误,我没有更改任何内容.有修复吗?

推荐答案

我遇到了同样的问题.似乎是 Android Studio 的错误.

I had the same problem. Seems it is a Android Studio bug.

在您的样式 xml 文件中更改:

In your styles xml-file change this:

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

为此:

<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">

对我有用.

这篇关于无法加载 AppCompat ActionBar 并出现未知错误?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆