I'm trying to retrieve a bundle from another activity but when I try this, the following error appears in my logs: java.lang.NullPointerException: Attempt to invoke virtual method 'int android.os.Bundle.getInt(java.lang.String)' on a null object reference
The part of the code where I try to retrieve and show the bundle is this:
Bundle bundlefrankrijk = getIntent().getExtras();
    int scorefrankrijk = bundlefrankrijk.getInt("finalScoreFrankrijk");
    TextView highscoreLabelfranrkijk = (TextView) findViewById(R.id.highscorefrankrijk);
    SharedPreferences settingsfrankrijk = getSharedPreferences("GAME_DATA", Context.MODE_PRIVATE);
    int highScorefrankrijk = settingsfrankrijk.getInt("HIGH_SCORE", 0);
    if (scorefrankrijk > highScorefrankrijk) {
        highscoreLabelfranrkijk.setText("High Score : " + scorefrankrijk);
        SharedPreferences.Editor editor = settingsfrankrijk.edit();
        editor.putInt("HIGH_SCORE", scorefrankrijk);
        editor.commit();
    } else {
        highscoreLabelfranrkijk.setText("High Score : " + highScorefrankrijk);
    }
This is how I'm sending the intent to the current activity:
Intent i = new Intent(QuizActivityFrankrijk.this, 
QuizResultaatFrankrijk.class);
            Bundle bundlefrankrijk = new Bundle(0);
            bundlefrankrijk.putInt("finalScoreFrankrijk", mScoreFrankrijk);
            i.putExtras(bundlefrankrijk);
            QuizActivityFrankrijk.this.finish();
            startActivity(i);
Thanks in advance!
 
    