You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The easiest way is to save a reference to the view after inflating and use findViewById to get any view inside of it which you can set a click listeners on.
i.e
In kotlin
val bubbleLayout=LayoutInflater.from(context).inflate(R.layout.your_layout,null)
suppose i have a button inside bubble layout then how do i get the click event of that button ?
The text was updated successfully, but these errors were encountered: