向SharedPreferences提交已修改的数据,应当调用Editor类的( )方法。
A: getString()
B: putString()
C: commit()
D: edit()
A: getString()
B: putString()
C: commit()
D: edit()
举一反三
- 对于SharedPreferences存储,下面说法正确的是( ) A: SharedPreferences pref = new SharedPreferences()。 B: Editor editor = new Editor()。 C: SharedPreferences只能存储字符串类型数据。 D: Editor对象存储数据最后都要调用commit()/apply()方法。
- 通过调用SharedPreferences类的()方法来获得编辑SharedPreferences中数据的编辑器对象。 A: remove() B: clear() C: edit() D: commit()
- 用SharedPreferences存储存储数据,必须通过( )类实现。 A: Bundle B: putString C: ContentValues D: Editor
- 使用SharedPreference保存数据的步骤 A: 获取到应用中的SharedPreferences对象 B: 通过执行edit()创建一个SharedPreferences.Editor C: 通过类似putString()与putInt()等方法传递keys与values D: 通过commit()方法提交改变
- 下列选项中,属于Editor类中存储String类型参数的方法的是()。 A: set() B: put() C: getString() D: putString()