我正在开发一个带有微调器的Android应用程序。 微调器项和微调器值不同。我想收集来自from包括微调器的所有值,并将rest api服务设置为web后端。
这是响应数组。
{"Status":true,"errorType":null,"countryList":[{"Code":"US","Name":"United States"},{"Code":"CA","Name":"Canada"},{"Code":"AU","Name":"Australia"},{"Code":"GB","Name":"United Kingdom"}]}
我已成功将名称 jsonObject绑定到微调器,但我无法添加代码。
这是我的代码。
JSONObject responseObject = new JSONObject(res);
String status=responseObject.getString("Status");
JSONArray JA = responseObject.getJSONArray("countryList");
JSONObject json= null;
if(status.equals("true")) {
final String[] str2 = new String[JA.length()];
for (int i=0;i<JA.length();i++)
{
json = JA.getJSONObject(i);
str2[i] = json.getString("Name");
}
sp = (Spinner) findViewById(R.id.citnzshp_field);
list = new ArrayList<String>();
for(int i=0;i<str2.length;i++)
{
list.add(str2[i]);
}
Collections.sort(list);
ArrayAdapter<String> adp;
adp = new ArrayAdapter<String>
(getApplicationContext(),android.R.layout.simple_dropdown_item_1line, list);
sp.setAdapter(adp);
}
如何将代码 jsonObject绑定到spinner,以便在提交表单后进行。
任何人都可以与我分享制作自定义适配器以便将数据绑定到微调器并选择值的优势。
答案 0 :(得分:2)
@Haresh Chhelana示例很好,但是如果你想在选择后在微调器中显示名称和代码,请检查它。
List<Map<String, String>> items = new ArrayList<Map<String, String>>();
for (int i = 0; i < JA.length(); i++) {
json = JA.getJSONObject(i);
mapData = new HashMap<String, String>();
mapData.put("name", json.getString("Name"));
mapData.put("code", json.getString("Code"));
items.add(mapData);
}
SimpleAdapter adapter = new SimpleAdapter(this, items, android.R.layout.simple_list_item_2, new String[] {
"name", "code" }, new int[] { android.R.id.text1, android.R.id.text2 });
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinner.setAdapter(adapter);
Spinner选择了项目回调
spinner.setOnItemSelectedListener(new OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
Map<String, String> selectedItem = (Map<String, String>) parent.getSelectedItem();
String name=selectedItem.get("name");
String code=selectedItem.get("code");
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
}
});