I\'m trying to show my results search in a ListView on the Fragment, but it fails on:
ListView
Fragment
LayoutInflater inflater = getLayoutInflater()
In Activity you can use like this:
this.getLayoutInflater();
For Fragment you need to replace keyword "this" with "getActivity()"
getActivity().getLayoutInflater();
Hope this will help!