android:foreground="?attr/selectableItemBackground" 提示找不到的原因

如果你发现引入的版本号(如下面示例)大于21 ,但是仍然提示android:foreground="?attr/selectableItemBackground"

  implementation 'com.android.support:appcompat-v7:27.0.2'

那么问题出在改变了项目中build.gradle中

  google()
  jcenter()两者的顺序和位置。

一般此问题出现在加入阿里云的maven时 不小心插入到上述两者中 造成的。像我这样:

  google()
  maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
  jcenter()

那么就会出现此问题。

 

 

你可能感兴趣的:(Android中级)