Android Preference, Does It Have To Be Unique?
For my private static final String PREFS_NAME = 'mypref'; does the PREFS_NAME have to be unique for every application? Or can I use the same one over and over.
Solution 1:
It just has to be unique per app. Different apps can use the same name without collision.
Post a Comment for "Android Preference, Does It Have To Be Unique?"