android – 无法加载带有未知错误的AppCompat ActionBar?

前端之家收集整理的这篇文章主要介绍了android – 无法加载带有未知错误的AppCompat ActionBar?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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上发现了这个错误,我没有改变任何东西.有没有修复?

解决方法

我有同样的问题.似乎这是一个Android Studio错误.

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

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

对此:

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

适合我.

原文链接:https://www.f2er.com/android/316950.html

猜你在找的Android相关文章