最近我从 GitHub 下载了一个代码并将其同步到我的 android studio。我在这样做时遇到了很多错误和问题,并以某种方式修复了其中的大部分。然而,我现在遇到的最后一个问题是我的 android studio 找不到类 FloatingActionButton,正如你在这个屏幕截图中看到的那样
需要注意的是,之前的许多其他类,包括“AppCompatActivity”都无法解析。将依赖项更改为以下解决了问题
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
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'
}
但即使在更改依赖项、清理构建项目、执行“无效缓存/重新启动...”之后,“FloatingActionButton”的问题仍然存在。
implementation 'com.android.support:design:27.1.1'
添加到代码中,并且编译器仍无法解析 FloatingActionButton 类,只需重建您的项目。我和一位同事最近遇到了同样的问题,而依赖关系已经存在,并且简单的重建就解决了这一切。