I opened dialog in a fragment and when come back to fragment, my fragment's view is null Object.
when the dialog is displaying which lifecycle method fragment is calling?
public class MyFragment extends Fragment{
  TextView textView;
  View view;
  FloatingActionButton actionButton;
  @Override
  public View onCreateView(final LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    view = inflater.inflate(R.layout.fragment_read, container, false); 
    textView = view.findViewById(R.id.txtSaved);
    actionButton = view.findViewById(R.id.floatingActionButton);
    actionButton.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View view) {
        DialogSearch search = new DialogSearch();
        search.show(getActivity().getSupportFragmentManager(),"MyDialog");
      }
    });
   return view;
  }
}
 
     
    