I keep Getting the Default value either my UI will display null or if I use integers it displays that default value as well here it is in the string form plz help
This line
editor.putString(newUserScore1, null);
should be
editor.putString("NewuserScore1",newUserScore1);
and also don't forget to commit your changes using editor.commit();
editor.commit();