Skip to content
Advertisement

How to link a click handler to a fragment for data binding?

I want to use data binding in a fragment to trigger all my button clicks in handler class. When I run the code below I get the following error.

JavaScript

I’m not sure if the problem is with how I’m passing the context to the Handler class or if I’ve done some wrong the Data binding.

UserFragment

JavaScript

MyClickHandlers

JavaScript

fragment_user

JavaScript

Advertisement

Answer

Your onClick() of MyHandlers has to have the view you click as a parameter, so change it to be:

JavaScript

I guess that will solve the problem, also please instantiate the MyClickHandlers with the context instead of activity, as both are different things.

so in onCreateView(), add requireContext() instead of getActivity()

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