How to use onSearchRequested () in fragments?

I am developing an application that uses fragments, here is my problem.

1. In older versions of android, we can override the onSearchRequested () method in actions.

2. But where, as in fragments, we cannot override onSearchRequested () how to implement this method in fragments.

Thanks, Nikhilreddy.

+4
source share
1 answer

Try getActivity().onSearchRequested();

+1
source

Source: https://habr.com/ru/post/1394998/


All Articles