Good evening to everyone! I have a problem that is kicking my butt here. I have a JSONArray of Locations.
I want to populate a spinner with the name and id of the location. Here is my code:
public class NewReport extends Activity {
/** Called when the activity is first created. */
private final static String SERVICE_URI = "http://demosite.com/inspectionsvc";
private final static String LocationURI = "/locations/getlocations";
HttpClient client;
JSONArray json;
String[] locations = {};
//private Spinner empspinner;
private TextView emailAddressView;
private TextView employeeIDView;
private TextView firstNameView;
private TextView lastNameView;
private TextView errorView;
private Spinner locationSpinner;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.newreport);
//empspinner = (Spinner)findViewById(R.id.empspinner);
emailAddressView = (TextView)findViewById(R.id.emailAddressView);
employeeIDView = (TextView)findViewById(R.id.employeeIDView);
firstNameView = (TextView)findViewById(R.id.firstNameView);
lastNameView = (TextView)findViewById(R.id.lastNameView);
errorView = (TextView)findViewById(R.id.errorView);
locationSpinner = (Spinner)findViewById(R.id.locationSpinner);
client = new DefaultHttpClient();
new getLocations().execute("LocationName");
}
public JSONArray getlocations(String LocationUrl) throws ClientProtocolException, IOException, JSONException{
StringBuilder url = new StringBuilder(SERVICE_URI);
url.append(LocationUrl);
HttpGet get = new HttpGet(url.toString());
HttpResponse r = client.execute(get);
//check for connection method success
int status = r.getStatusLine().getStatusCode();
if (status == 200) {
HttpEntity e = r.getEntity();
String data = EntityUtils.toString(e);
JSONArray alllocations = new JSONArray(data);
// Reset plate spinner
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
for (int i = 0; i < alllocations.length(); ++i) {
adapter.add(alllocations.getString(i));
}
//JSONObject mylocation = alllocations.getJSONObject(1);
return alllocations;
}else
Toast.makeText(NewReport.this, "Error", Toast.LENGTH_SHORT);
return null;
}
@Override
public void onResume() {
super.onResume();
Button loadEmployee = (Button) findViewById(R.id.btnloademp);
loadEmployee.setOnClickListener(new View.OnClickListener() {
public void onClick(View button) {
getLocations task = new getLocations();
task.execute(new String[] { SERVICE_URI + "/employee/getemployee/4123/" });
}
});
}
public class getLocations extends AsyncTask<String, Integer, JSONArray> {
ProgressDialog dialog;
protected void onPreExecute(){
//dialog = new ProgressDialog(NewReport.this);
//dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
//dialog.setMax(100);
//dialog.show();
}
@Override
protected JSONArray doInBackground(String... params) {
// TODO Auto-generated method stub
try {
json = getlocations(LocationURI);
return json.toString(params[0]);
} catch (ClientProtocolException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (JSONException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
return null;
}
protected void onProgressUpdate(Integer... progress) {
//dialog.incrementProgressBy(progress[0]);
//setProgress(progress[0]);
}
protected void onPostExecute(SpinnerAdapter result){
//where the final action goes
locationSpinner.setAdapter(result);
}
}
}
It hits my service just fine, and I can see the results being returned in fiddler. I am a newbie to android, so thanks in advance!