The savedInstanceState is only for saving state associated with a current instance of an Activity, for example current navigation or selection info, so that if Android destroys and recreates an Activity, it can come back as it was before. See the documentation for onCreateonCreate and onSaveInstanceStateonSaveInstanceState
For more long lived state, consider using a SQLite database, a file, or preferences. See Saving Persistent StateSaving Persistent State.