RecycleView中选中某一个item变色

1.通过drawable的selector属性

chk_payitem_select_status.xml文件



    
    


2.使该item可以获得焦点,和点击效果

android:clickable="true"  
android:focusableInTouchMode="true"  
android:focusable="true"

例如:



这样,当点击某个条目,该条目背景颜色相应改变

你可能感兴趣的:(RecycleView中选中某一个item变色)