本地变量或实例字段名称与正则表达式不匹配' [a-z] +'

时间:2016-08-15 08:18:24

标签: android regex android-studio intellij-idea gradle

将Android工作室升级到2.1.2后,当我将旧项目导入其中时,我的代码会出现警告。警告是:

Instance field name doesn't match regex '[a-z]+'
Local variable name doesn't match regex '[a-z]+'
Instance field access is not qualified with 'this'

这是截图。

Local variable or instance field name doesn't match regex '[a-z]+'

如果我将同一个类文件复制到另一个新项目,则没有警告。只有旧项目会显示这些警告。 这是我的build.gradle文件:

apply plugin: 'com.android.application'
android {
    compileSdkVersion 24
    buildToolsVersion "24.0.1"

    defaultConfig {
        applicationId "com.example.app"
        minSdkVersion 10
        targetSdkVersion 24
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:24.1.0'
    compile 'com.android.support:design:24.1.0'
    androidTestCompile 'junit:junit:4.12'
}

我尝试了File menu -> Invalidate caches / Restart,但它没有帮助。 我想解决问题,而不是忽略警告。 任何帮助深表感谢。谢谢。

1 个答案:

答案 0 :(得分:5)

您的检查资料已更改。你可以用这种方式恢复它。

  1. 转到检查 (面部右下角) - > 配置检查文件 - >设置 - >编辑 - >检查
  2. enter image description here

    1. 您可以从左上角的下拉菜单中选择所需的配置文件来更改检验配置文件
    2. 从列表中禁用任何不需要的检查。

      创建自己的检查员资料。

      enter image description here