I am hiding the status bar on click of ListView
item in getView
method.But when I am hiding status bar then getview
method called .It should not be called.
Here is my code :-
getActivity().getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
This line I have added. How to prevent from calling getview
method when hide status bar.
Thanks in advance.