我想知道如何将自定义ArrayList保存到Android手机中。 因为它习惯于过滤活动。 我应该把这些信息保存在任何地方。
ArrayList<ListAdapterItemsSelected> mSelectedList = new ArrayList<ListAdapterItemsSelected>();
public class ListAdapterItemsSelected {
public String sText;
public boolean bSelected;
public String getsText() {
return sText;
}
public void setsText(String sText) {
this.sText = sText;
}
public boolean isbSelected() {
return bSelected;
}
public void setbSelected(boolean bSelected) {
this.bSelected = bSelected;
}
public ListAdapterItemsSelected(String _text, boolean _selected) {
sText = _text;
bSelected = _selected;
}
}
答案 0 :(得分:4)
使用GSON
Gson gson = new Gson();
ArrayList<ListAdapterItemsSelected> mSelectedList = new ArrayList<ListAdapterItemsSelected>();
String jsonString = gson.toJson(mSelectedList);
SharedPreferences sp = context.getSharedPreferences("KEY", Context.MODE_PRIVATE);
//Save to SharedPreferences
sp.edit().putString("KEY", jsonString).commit();
//Get to SharedPreferences
//For default value, just to get no errors while getting no value from the SharedPreferences
String empty_list = gson.toJson(new ArrayList<ListAdapterItemsSelected>());
ArrayList<ListAdapterItemsSelected> mSelectedList = gson.fromJson(sp.getString("KEY", empty_list),
new TypeToken<ArrayList<ListAdapterItemsSelected>>() {
}.getType());
答案 1 :(得分:0)
现在有通用的方法。您可以通过任何方法将其转换为字符串,例如使用json转换器或使用第三方库,如:
答案 2 :(得分:0)
SharedPreferences
对于这类事情并不是很好。您甚至无法轻松存储List
String
s而不使用某些讨厌的黑客,更不用说List
个自定义对象了。我个人将List
存储为内部存储中的文件,使用DataOutputStream
首先写出ArrayList
的大小,然后是boolean
的序列和对象的String
值。