我收到以下错误,并且我正在使用Android Studio 3.1

时间:2018-07-16 13:18:31

标签: java android android-studio

我收到以下错误,并且我正在使用Android Studio 3.1

  

无法加载具有未知错误的AppCompat ActionBar。

Here's the screenshot of the error。 在设计模式下将组件添加到屏幕时,它们不会在那里显示

Here's how to look my Gradle Scripts

1 个答案:

答案 0 :(得分:0)

使用api 28导致问题加剧。降级为26并按以下方式使用

android {
    compileSdkVersion 26
    defaultConfig {
        ...
        targetSdkVersion 26
        ...
    }
    ...
}

dependencies {
    ...
    implementation 'com.android.support:appcompat-v7:26.1.0'
    ...
    implementation 'com.android.support:recyclerview-v7:26.1.0'
}