本文介绍了共享preferences在安卓的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何strore以表格的形式共享preferences数据
how to strore data in shared preferences in table format
推荐答案
有关商店使用低于code共享preference使用值
For store the values using shared preference use below code
SharedPreferences prefs=getSharedPreferences("Key", 0);
Editor e= prefs.edit();
e.putString("Name", "AAA");
e.commit();
有关检索低于code中的共享preFS值使用
For retrieve the shared prefs value use below code
SharedPreferences prefs=getSharedPreferences("Key", 0);
String s= prefs.getString("Name", "");
这篇关于共享preferences在安卓的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!