意向putExtra JSON數據近日,在我的Web服務器,以獲得JSON文本,我使用AsyncTask
如何使用Android上
String strData = "";
@Override
protected void onPostExecute(String result) {
super.onPostExecute(result);
final ArrayAdapter<String> adapter = new ArrayAdapter<String>(MainActivity.this, android.R.layout.simple_list_item_1);
try {
JSONArray arr =new JSONArray(result);
JSONObject ob = arr.getJSONObject(0);
strData += ob.getString("name") + "\n"
+ " - " + ob.getString("school") + "\n"
+ " - " + ob.getString("job") + "\n\n";
adapter.add(strData);
} catch (JSONException e) {
Log.d(TAG,"DD");
}
ListView listView = (ListView) findViewById(R.id.listView);
listView.setAdapter(adapter);
}
結果
aaa
- seoul university
- teacher
,我想JSON解析器值使用intent.putExtra
另一項活動。
我不知道
Intent intent = new Intent(this, anotheractivity.class);
intent.putExtra("information","I don't know here");
startActivity(intent);
我想school.job
數據的另一個活動的運輸。
如何使用數據傳輸JSON解析器數據?
請儘量解釋得清楚你的問題,這是很難理解現在 –
,如果你想通過意向額外嘗試這樣'intent.putExtra(「信息」,「ob.getString從JSON發送數據(「工作」)「);' –
這將解決你的目的。 http://stackoverflow.com/questions/37208243/how-to-pass-list-object-between-fragment/37208349#37208349 – Stallion