I saved my data from an numberDecimal edit text using sharedpreference. When I want to get that data in another activity, it always appears as null, so it wasn't saved correctly. Any suggestion?
This is my code from where I save the data :
public void Start(View view) {
    EditText LevelEdit = (EditText) findViewById(R.id.editText_LevelCurrent);
    String User_Level = LevelEdit.getText().toString();
    if (User_Level == "") {
        Toast.makeText(this, "Select a level",
                Toast.LENGTH_LONG).show();
    } else {
        SharedPreferences sharedPref = getPreferences(Context.MODE_PRIVATE);
        SharedPreferences.Editor editor = sharedPref.edit();
        editor.putString(GameConstants.StringvalueOfLevel,User_Level);
        editor.commit();
        Intent myIntent = new Intent(Mygame_Menu.this, Mygame.class);
        startActivity(myIntent);
    }
}
 
     
     
     
    