我收到以下错误,并且我正在使用Android Studio 3.1
无法加载具有未知错误的AppCompat ActionBar。
Here's the screenshot of the error。 在设计模式下将组件添加到屏幕时,它们不会在那里显示
答案 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'
}