在styles.xml(Android Studio)中无法解析符号“主题”

前端之家收集整理的这篇文章主要介绍了在styles.xml(Android Studio)中无法解析符号“主题”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

从今天起,Android Studio在styles.xml中找不到AppCompat主题,例如代码中的AppCompatActivity可以被识别.我的Android Studio版本是2.2.2,Build#AI-145.3360264

我已经尝试升级到最新的构建工具,编译sdk(25)版本等,但它没有解决问题.

目前我已经安装了以下(从sdk经理):

> android api:19和23
> sdk平台工具:25.0.1
> sdk工具:25.2.3
> build-tools:23.0.2和25.0.1
>支持仓库:40
> Google存储库:39

还有其他几个,这些都不是必须的.

build.gradle的应用程序:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion '25.0.1'
    defaultConfig {
        applicationId "xxx.xxxxxxxx.xxxxxxxxx" //not the real applicationId
        minSdkVersion 14
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android.txt'),'proguard-rules.pro'
        }
        debug {

        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'],dir: 'libs')
    compile files('libs/RootTools.jar')
    compile 'com.android.support:support-v4:23.+'
    compile 'com.android.support:support-v13:23.+'
    compile 'com.android.support:appcompat-v7:23.+'
    compile 'com.android.support:design:23.+'
    compile 'com.android.support:cardview-v7:23.+'
    compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
    compile 'de.hdodenhof:circleimageview:2.1.0'
}
当我升级到alpha-2时,我遇到了同样的问题.

我看了这个链接http://tools.android.com/recent,但唯一有效的是:

改变这个:
Classpath’com.android.tools.build:gradle:2.3.0-alpha2′

为了这:
Classpath’com.android.tools.build:gradle:2.2.3′

在你的build.gradle(项目)

原文链接:https://www.f2er.com/xml/292796.html

猜你在找的XML相关文章