我面临一个奇怪的问题。当我使用完全正常工作的以下属性时,我可以在设备中看到涟漪效应。
android:foreground="?selectableItemBackgroundBorderless"
android:background="?selectableItemBackgroundBorderless"
但在 IDE 中显示错误无法解析符号'?selectableItemBackgroundBorderless'
。
Android Studio:v3.1.2
compileSdkVersion 27
buildToolsVersion "27.0.3"
support_version = '27.1.1'
可能是什么问题?
答案 0 :(得分:3)
我遇到了与 27.0.3
使用 27.0.3
版本
使用 27.0.2
版本
使用 27.0.2
代替 27.0.3
比
Clean-ReBuild-Run
您的项目
修改强>
如果您想使用 27.0.3
,请按照此回答https://stackoverflow.com/a/48734990/7666442
答案 1 :(得分:0)
从API版本21级开始使用:
android:foreground="?android:attr/selectableItemBackgroundBorderless"
android:background="?android:attr/selectableItemBackgroundBorderless"