Currently I'm coding an android project using Android Studio 3.1.2 and SDK 19.
When I refactored almost my whole code and replaced a lot of getContext() calls with requireContext() and getActivity() with requireActivity() i came across the problem, that the app crashes already at the launcher activity. I know that there are several posts related to the same problem of getting IllegalStateException: Fragment myFragment not attached to a contextbut they're all very project-specific so it doesn't actually show me the step i missed to do. So i hereby show you my example of code and pray for a merciful programmer that enlightens me, what I have to do, to solve this problem just in the suiting way.
This is my SplashActivity (the launcher activity):
public class SplashActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_splash);
        Fragment fragmentToDisplay = null;
        if (!(getIntent().getBooleanExtra("isLaunch", true))) {
            fragmentToDisplay = new LoginFragment();
        } else {
            if (savedInstanceState == null) {
                fragmentToDisplay = new SplashFragment();
            }
        }
        if (fragmentToDisplay.isAdded()) {
            getSupportFragmentManager().beginTransaction().replace(R.id.fragment_container, fragmentToDisplay).commit();
        }
    }
}
This is the SplashFragment which gets loaded initially: 
public class SplashFragment extends RequestingFragment {
    private Handler delayHandler = new Handler();
    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View fragmentView = inflater.inflate(R.layout.fragment_splash, container, false);
        requestQueue = Volley.newRequestQueue(this.requireContext());
        requestParams.add(SessionHandler.getAppInstanceID(this.getContext()));
        startRequest(RequestOperation.SESSION_CHECK);
        onSuccess(new JSONObject(), "");
        return fragmentView;
    }
    @Override
    public void onDestroy() {
        super.onDestroy();
        delayHandler.removeCallbacksAndMessages(null);
    }
    @Override
    public void onSuccess(final JSONObject json, String parsingKey) {
        delayHandler.postDelayed(new Runnable() {
            @Override
            public void run() {
                //parsing stuff
            }    
        }, 2000);
    }
    @Override
    public void onError() {
        showErrorDialog();
    }
    private void showErrorDialog() {
        //show a horrifying dialog
    }
}
I would be very thankful, if someone could explain to me, what in particular is causing the exception and how do I do it correctly. Thanks in advance.
