I am developing a method for storing some values ββin SharedPreferences that are related to a set of views. This method will be launched by a group of subclasses, so I need an easy way to store the settings names, and I am considering using R.id values ββfor representations, since I already have them in ArrayList for another method. However, I'm a little worried that these values ββmay vary between runs, which will actually invalidate the saved settings. Do they ever change beyond development?
source share