Skip to content
Advertisement

How to dismiss Bottomsheet on Click in ViewHolder RecyclerView Adapter?

I want to dismiss my BottomSheet on Click of cardView in BottomSheet

Here is my code of onBindViewHolder

JavaScript

I getting this error

JavaScript

onClick I want to dismiss Bottomsheet and backto Activity.

Thank you in advance =)

Advertisement

Answer

what you have done here will not work as you expect it to be :-

JavaScript

Here you are creating a new bottomSheet Object so using dismiss() on this object will not work. Instead you need a interface which will provide you a callback to your bottomShett Fragment where you have setup your recyclerView. And in that Callback you need to call simply call BottomSheet inbuild method dismiss(). Here is the answer on S.O which shows how you can create that interface which will provide you callback to your Fragment.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement