在SharedPreferences中保存字符串数组

时间:2017-08-29 12:51:59

标签: android arrays sharedpreferences

我有一个来自服务器的字符串数组,我想在sharedPreferences中保存字符串数组,以避免进一步的服务器调用来检索字符串数组。

这是我的String数组:

String[] names = new String[response.body().getData().size()];

SharedPreferences.Editor editor = prefs.edit();
editor.putStringSet("walletTypes", names);

不幸的是我无法将字符串数组放在StringSet中,任何人都知道如何在SharedPreferences中保存我的字符串数组。

0 个答案:

没有答案