Recyclerview: How To Start Contextual Action Bar Cab With A Checkbox?
I have a RecyclerView list of CardViews and am using AppCompatActivity. Each CardView has a checkbox. When I click on the checkbox I would like to start a Contextual Action Bar.
Solution 1:
Solution was to set up a method in onBindViewHolder()
that would update the item views for the OnClickListeners
in Itemholder()
.
Post a Comment for "Recyclerview: How To Start Contextual Action Bar Cab With A Checkbox?"