NullPointerException : FragmentManager.beginTransa

2020-06-09 08:01发布

I'm getting this error while trying to launch a Fragment from a first Fragment :

java.lang.NullPointerException: Attempt to invoke virtual method 'android.app.FragmentTransaction android.app.FragmentManager.beginTransaction()' on a null object reference

Here's the method where I'm getting the error :

    @Override
    public void onClick(View v) {
        Fragment fragment = new PropertyFragment();
        if (fragment != null) {
            FragmentManager fragmentManager = fragment.getFragmentManager();
            FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();

            // Replace whatever is in the fragment_container view with this fragment,
            // and add the transaction to the back stack so the user can navigate back
            fragmentTransaction.replace(R.id.rent_viewer, fragment);  
            fragmentTransaction.addToBackStack(null);

            // Commit the transaction
            fragmentTransaction.commit();  
        }
    }

Precisely, the following code instruction is causing the error :

fragmentManager.beginTransaction();

Here's how the class and the nested class look like :

public class RentFragment extends Fragment {    

    ...

    @SuppressWarnings("unused")
    private OnRentFragmentInteractionListener mListener;

    public RentFragment() {
    }

    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);
        try {
            mListener = (OnRentFragmentInteractionListener) activity;
        } catch (ClassCastException e) {
            throw new ClassCastException(activity.toString()
                    + " must implement OnRentFragmentInteractionListener");
        }
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);         
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.fragment_rent, container, false);                

        myOnClickListener = new RentOnClickListener(getActivity());                     

        return rootView;
    }

    @Override
    public void onViewCreated(View view, Bundle savedInstanceState) {          
        super.onViewCreated(view, savedInstanceState);
    }   

    @Override
    public void onDetach() {
        super.onDetach();
        mListener = null;
    }

    public interface OnRentFragmentInteractionListener {
        public void onRentFragmentInteraction(Uri uri);
    }

    private static class RentOnClickListener implements View.OnClickListener {

        private final Context context;

        private RentOnClickListener(Context context) {
            this.context = context;
        }

        @Override
        public void onClick(View v) {   
            Fragment fragment = new PropertyFragment();    
            if (fragment != null) {    
                FragmentManager fragmentManager =  fragment.getFragmentManager();
                FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();

                // Replace whatever is in the fragment_container view with this fragment,
                // and add the transaction to the back stack so the user can navigate back
                fragmentTransaction.replace(R.id.rent_viewer, fragment);  
                fragmentTransaction.addToBackStack(null);

                // Commit the transaction
                fragmentTransaction.commit();  
            }   
        }        
    }       
}

5条回答
forever°为你锁心
2楼-- · 2020-06-09 08:12

FragmentManager will be null until it is attached to the activity.So use below code , If it is a nested Fragment use this.getChildFragmentManager() for your fragment class else use getActivity().getFragmentManager() or getActivity().getSupportFragmentManager().

查看更多
唯我独甜
3楼-- · 2020-06-09 08:21

You have to set context of activity as shown below on code HomeActivity.this.getSupportFragmentManager();

private Fragment fragment;
private FragmentManager fragmentManager;
fragmentManager=HomeActivity.this.getSupportFragmentManager();
 transaction = fragmentManager.beginTransaction();
 transaction.add(R.id.main_container,  new ProfileFragment()).commit();
查看更多
我想做一个坏孩纸
4楼-- · 2020-06-09 08:29

Declare your FragmentTransaction and initialize it like this

FragmentTransaction fm;

@Override
public void onAttach(@NonNull Context context) {
    super.onAttach(context);
    fm = getFragmentManager();
}

Then on your code, you can call this

Fragment fragment = new PropertyFragment();
FragmentTransaction transaction = fm.beginTransaction();
transaction.add(R.id.rent_viewer, fragment).addToBackStack(null).commit();;
查看更多
聊天终结者
5楼-- · 2020-06-09 08:35
     FragmentManager fragmentManager = getFragmentManager();
        FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();

        // Replace whatever is in the fragment_container view with this fragment,
        // and add the transaction to the back stack so the user can navigate back
        fragmentTransaction.replace(R.id.rent_viewer, fragment);  
        fragmentTransaction.addToBackStack(null);

        // Commit the transaction
        fragmentTransaction.commit();  
查看更多
何必那么认真
6楼-- · 2020-06-09 08:36

Use the Customize Method in Base Class and use it.

public void replaceFragment(Fragment newFragment, Bundle bundle, boolean isAddToBackStack) {

        String tag = newFragment.getClass().getSimpleName();
        if (bundle != null) {
            newFragment.setArguments(bundle);
        }

        FragmentTransaction ft = getSupportFragmentManager().beginTransaction();

        if (getCurrentFragment() != null) {
            ft.hide(getCurrentFragment());
        }
        ft.add(R.id.frameContainer, newFragment, tag);
        newFragment.setRetainInstance(true);
        if (isAddToBackStack) {
            ft.addToBackStack(tag);
        }
        try {
            ft.commitAllowingStateLoss();
        } catch (Exception ex) {
            ex.printStackTrace();
//            ft.commitAllowingStateLoss();
        }
    }
查看更多
登录 后发表回答