其他分享
首页 > 其他分享> > android-自定义selectableItemBackground

android-自定义selectableItemBackground

作者:互联网

我正在使用RecyclerView作为列表.我找到了一个非常不错的解决方案,可以为列表提供点击反馈和波动(在Lollipop上).
基本上,我给行布局指定了属性:

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

一切都很好,只是我的列表需要其他背景颜色(默认状态).如何仅给基本状态背景(未单击)覆盖以提供不同的颜色?

解决方法:

这将提供自定义背景色和默认的灰色波纹效果:

android:background="@color/YourCustomColor"
android:foreground="?android:attr/selectableItemBackground"

标签:android-recyclerview,android-styles,android
来源: https://codeday.me/bug/20191120/2041265.html