我需要使用这个小部件:
android.support.v7.widget.AppCompatCheckBox
但是当我启动应用时,我会得到一个ClassNotFoundException
因此我应该向build.gradle
添加什么依赖项才能让我能够使用它?
答案 0 :(得分:4)
您应该根据此要求更改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 。