0
我節省了矢量使用GSON保存對象的使用GSON
這是我的getter和setter方法sharedpreferences,但我似乎對我的getter一些警告SharedPreferences一個載體。
我二傳手沒有任何警告
Gson gson = new Gson();
String json = gson.toJson(al);
editor.putString("accountLabels", json);
editor.commit();
我消氣警告我「類型安全:型載體的表達需要選中轉換爲符合矢量」
Gson gson = new Gson();
String json = myPref.getString("accountLabels", "Error");
Vector<AccountLabels> obj = gson.fromJson(json, Vector.class);
return obj;
我不不知道在它周圍有多少工作是保存共享首選項中的對象或對象向量,但對我來說這似乎是最好的解決方案。
是的,它是關於預警,感謝它有助於答案。這也是很好的知道。這是令人失望的,以及矢量是如此便攜。 – kotsumu