Android Cannot resolve symbol '?attr/selectableItemBackground'

后端 未结 10 1954
北恋
北恋 2020-12-05 09:11


        
10条回答
  •  甜味超标
    2020-12-05 09:58

    Both resources are defined with the Android Support Library and since these symbols cannot be resolved, it seems like you're missing to define the support dependency.

    dependencies {
        compile "com.android.support:appcompat-v7:$androidSupportVersion"
    }
    

提交回复
热议问题