ListViewのArrayAdapter内で使用するArrayListがあります。リスト内のアイテムを取得し、それらをJSONArrayに変換してAPIに送信する必要があります。私は周りを検索しましたが、これがどのように機能するかを説明するものは何も見つかりませんでした。助けていただければ幸いです。
更新-ソリューション
これが私が問題を解決するためにやったことです。
ArrayListのオブジェクト:
public class ListItem {
private long _masterId;
private String _name;
private long _category;
public ListItem(long masterId, String name, long category) {
_masterId = masterId;
_name = name;
_category = category;
}
public JSONObject getJSONObject() {
JSONObject obj = new JSONObject();
try {
obj.put("Id", _masterId);
obj.put("Name", _name);
obj.put("Category", _category);
} catch (JSONException e) {
trace("DefaultListItem.toString JSONException: "+e.getMessage());
}
return obj;
}
}
これが私がそれを変換した方法です:
ArrayList<ListItem> myCustomList = .... // list filled with objects
JSONArray jsonArray = new JSONArray();
for (int i=0; i < myCustomList.size(); i++) {
jsonArray.put(myCustomList.get(i).getJSONObject());
}
そして出力:
[{"Name":"Name 1","Id":0,"Category":"category 1"},{"Name":"Name 2","Id":1,"Category":"category 2"},{"Name":"Name 3","Id":2,"Category":"category 3"}]
これがいつか誰かに役立つことを願っています!