1
我正在編寫一個本機Android應用程序,使用PHP MYSQL從服務器獲取數據使用GET請求。 服務器發送我的方式,結果如下:如何在Android的列表視圖中顯示數據從發送多維數組的服務器
{
"result": true,
"error_message": "",
"response": [
{
"total_tasks": 8,
"tasks": [
{
"id": 8,
"name": "Hello Christine, call Mr. Dejan Mandic"
},
{
"id": 7,
"name": "Hello Christine, call Ms. Charente Douglas-Smith"
},
{
"id": 6,
"name": "Hello Christine, call Mrs. Alison Marshall"
},
{
"id": 5,
"name": "Hello Christine, call Mrs. Muna Crisp"
},
{
"id": 4,
"name": "Hello Christine, call Mr. Victor Crisp"
},
{
"id": 3,
"name": "Hello Christine, call Mrs. Kathy Dunn"
},
{
"id": 2,
"name": "Hello Christine, call Mr. Peter Dunn"
},
{
"id": 1,
"name": "Hello Christine, call Ms. Vanessa Allen"
}
]
}
]
}
我需要顯示從陣列中的數據「階躍響應」 - 在>「任務」(即ID和名稱)我的列表視圖在Android中,最終當用戶在ListView中的特定行中單擊時,有關該任務的信息將顯示在使用該ID的另一個活動中。由於服務器正在發送多維數組中的數據,因此我在ListView中獲取數據時遇到問題。 如果有人能夠幫助我,這將是一個很大的幫助。 謝謝:)
是的,它完全爲我工作..只是改變了responseArray.getJSONObject(i).. :) – Christine