Android Cannot resolve symbol '?attr/selectableItemBackground'

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


        
10条回答
  •  -上瘾入骨i
    2020-12-05 09:35

    For version Lollipop and higher use this:

    android:foreground="?android:attr/selectableItemBackground"
    

    for Pre-Lollipop use this:

    android:foreground="?attr/selectableItemBackground"
    

提交回复
热议问题