我将共享首选项中的字符串集保存到我的监视列表中。当用户点击按钮时,在电影的页面中,它会获取电影的名称,标题和发布日期,并将它们存储在JSON对象中。所有这些都存储为String。当我尝试在观察列表中添加电影时,问题仍然存在,我添加的每部新电影,最后一部电影都被覆盖,这意味着我的观看列表中一直只能有一部电影。
mButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
SharedPreferences sharedPreferences = getSharedPreferences("WatchlistData", Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPreferences.edit();
JSONObject obj = new JSONObject();
try {
obj.put("name", name);
obj.put("date", releaseDate);
obj.put("platform", platform);
} catch (JSONException e) {
e.printStackTrace();
}
Set<String> set = new HashSet<String>();
set.add(obj.toString());
editor.putStringSet("setOfStrings", set);
editor.commit(); //saved
}
});
监视列表片段OnCreateView
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.fragment_watchlist, container, false);
mRecyclerView = (RecyclerView) view.findViewById(R.id.watchlist);
mRecyclerView.setLayoutManager(new LinearLayoutManager(getActivity()));
mWatchlistAdapter = new WatchlistAdapter(getActivity(), loadFromStorage());
mWatchlistAdapter.notifyDataSetChanged();
mRecyclerView.setAdapter(mWatchlistAdapter);
return view;
}
loadFromStorage将我的xml文件加载到recyclerview中,此方法在我的适配器构造函数中传递。
SharedPreferences mPrefs = getActivity().getSharedPreferences("WatchlistData", Context.MODE_PRIVATE);
ArrayList<watchlist> items = new ArrayList<watchlist>();
Set<String> set = mPrefs.getStringSet("setOfStrings", null); //retrieving set of strings
if (set == null){
Toast.makeText(getActivity(), "No data found", Toast.LENGTH_LONG).show();
} else {
//for every string in set
for (String s : set) {
try {
JSONObject jsonObject = new JSONObject(s); //for every JSONObject String
String name = jsonObject.getString("name");
String date = jsonObject.getString("date");
String platform = jsonObject.getString("platform");
watchlist newGame = new watchlist();
newGame.setGame(name);
newGame.setDate(date);
newGame.setPlatform(platform);
items.add(newGame);
} catch (JSONException e) {
e.printStackTrace();
}
}
}
return items;
}
答案 0 :(得分:0)
看起来你只是在每次放置一些东西时覆盖SharedPreferences中的字符串集,这就是为什么你只看到最后的结果:
$for file in *.vcf
> do
> bsub /foo/bar/bgzip $file
>> $file.gz
您刚刚创建了一个新的&#39;每次点击并将其保存到&#34; setOfStrings&#34;。
我正在为一个项目考虑一个类似的实现,但是看到它成为一个从SharedPreferences操纵StringSet的问题。供参考,[Android开发者网站上的文档](http://developer.android.com/reference/android/content/SharedPreferences.html#getStringSet(java.lang.String,java.util.Set)) 状态, &#34;请注意,您不得修改此调用返回的set实例。如果您这样做,则无法保证存储数据的一致性,也无法根据您的能力修改实例。&#34;
有一些解决方法,但据我所知,最好避免使用SharedPreferences这样经常被操作的数据,因为它只是保存为容易出问题的xml文件 - 你可能要考虑在SQLite数据库中实现该信息。
答案 1 :(得分:0)
默认情况下,SharedPreferences
会将旧数据替换为旧数据。您可以做的是,先获取旧数据,然后附加较新的数据,
//Extract the value stored in SharedPreferences
String value = prefs.getString(<Key>, <DefaultValue>);
//Append to the extracted value
String appendedValue = append(value, newValue);
//Write the result back to SharedPreferences
editor.putString(<Key>, appendedValue).commit();
SharedPreferenced
是针对轻量级数据而制作的,但不适用于大量存储。因此,根据您的要求,您应该将数据写入外部存储中的JSON / XML文件,然后再将其读回。