我正在开发一个应用程序,我必须在其中解析JSON
数据,并且必须将它们放在自定义gridview
中。这是它应该是什么样子。
到目前为止,我已经在asynctask中解析了我的JSON数据并获取了这些值。这是我的代码:
private class getRedeemData extends AsyncTask<String, Void, String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
pdia = new ProgressDialog(AllPerksActivity.this);
pdia.setMessage("Loading products. Please wait...");
pdia.show();
}
@Override
protected String doInBackground(String... args) {
HttpParams params = new BasicHttpParams();
params.setParameter(CoreProtocolPNames.PROTOCOL_VERSION,
HttpVersion.HTTP_1_1);
HttpClient httpClient = new DefaultHttpClient(params);
HttpPost post = new HttpPost(
"MY API HERE..!!");
post.setHeader("Content-Type", "application/x-www-form-urlencoded");
try {
post.setEntity(new StringEntity("client_id=" + client_id + "&"
+ "client_secret=" + clientSecretKey, HTTP.UTF_8));
HttpResponse response = httpClient.execute(post);
int i = response.getStatusLine().getStatusCode();
System.out.println("HTTP Post status AllPerk Redeemption API: "
+ i);
BufferedReader in = new BufferedReader(new InputStreamReader(
response.getEntity().getContent()));
// SB to make a string out of the inputstream
StringBuffer sb = new StringBuffer("");
String line = "";
String NL = System.getProperty("line.separator");
while ((line = in.readLine()) != null) {
sb.append(line + NL);
}
in.close();
// the json string is stored here
String result = sb.toString();
System.out.println("Result Body: " + result);
return result;
} catch (Exception e) {
// TODO: handle exception
}
return null;
}
@Override
protected void onPostExecute(String result) {
JSONObject jObject;
try {
jObject = new JSONObject(result);
JSONArray jSearchData = jObject.getJSONArray("rewards");
for (int i = 0; i < jSearchData.length(); i++) {
JSONObject objJson = jSearchData.getJSONObject(i);
String rewardID = objJson.getString("rewardID");
String rewardType = objJson.getString("rewardType");
String rewardTitle = objJson.getString("rewardTitle");
System.out.println("Reward ID: " + rewardID);
System.out.println("Reward Type: " + rewardType);
System.out.println("Reward Tittle: " + rewardTitle);
}
} catch (Exception e) {
// TODO: handle exception
}
pdia.dismiss();
}
}
这是我的Gridview XML:
<?xml version="1.0" encoding="utf-8"?>
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/grid"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:horizontalSpacing="10dp"
android:numColumns="2"
android:scrollbarStyle="outsideOverlay"
android:scrollbars="vertical"
android:verticalScrollbarPosition="right"
android:verticalSpacing="10dp" >
</GridView>
有人可以告诉我如何使用适配器来解决这个问题。
任何形式的帮助都将受到赞赏。
答案 0 :(得分:2)
您将JSON数据保存在某个数组中,然后
gridView.setAdapter(new ImageAdapter(this, MOBILE_OS));
有关使用自定义适配器的Gridview,请参阅此链接
答案 1 :(得分:0)
在解析JSON数据存储集合中的数据(ArrayList将执行)之后,创建一个适配器并使用网格视图的setAdapter
方法将其与GridView绑定
答案 2 :(得分:0)
使用
import org.json.JSONArray;
import org.json.JSONObject;
可以轻松完成。 检查引用Android gridview using json data