我有一个来自服务器的字符串数组,我想在sharedPreferences
中保存字符串数组,以避免进一步的服务器调用来检索字符串数组。
这是我的String数组:
String[] names = new String[response.body().getData().size()];
SharedPreferences.Editor editor = prefs.edit();
editor.putStringSet("walletTypes", names);
不幸的是我无法将字符串数组放在StringSet
中,任何人都知道如何在SharedPreferences
中保存我的字符串数组。