我需要使用此小部件:

android.support.v7.widget.AppCompatCheckBox

但是,当我启动该应用程序时,我得到了一个ClassNotFoundException,那么我应该在build.gradle中添加什么依赖关系才能使用它?

最佳答案

您应该为此要求更改compileSdkVersion

compileSdkVersion 22 // compileSdkVersion is the version of the compiler used in building the app
buildToolsVersion "22.0.1"

然后打电话
compile 'com.android.support:appcompat-v7:22.0.0'

然后 Clan-Rebuild-Sync

10-05 17:55