android - 使用 Async Task 和 BaseAdapter 解析 Json

标签 android json android-asynctask baseadapter android-adapter

我正在访问 http://graph.facebook.com/xyz并在 ListView 中显示姓名、ID 和性别。我不知道如何调用 doInBackground 和 BaseAdapter 的结果。

public class FbMainActivity extends Activity {
Button b;
ListView lv;
DefaultHttpClient client;
HttpGet get;
HttpResponse response;
HttpEntity entity;
ArrayList<FBAccount> al;
MyAdapter adapter;
TextView tv1, tv2, tv3;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_fb_main);
    b = (Button) findViewById(R.id.bFAce);
    tv1 = (TextView) findViewById(R.id.textView1);
    tv2 = (TextView) findViewById(R.id.textView2);
    tv3 = (TextView) findViewById(R.id.textView3);

    lv = (ListView) findViewById(R.id.list);
    al = new ArrayList<FBAccount>();
    adapter = new MyAdapter();
    lv.setAdapter(adapter);

    b.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            MyOperation operation = new MyOperation();
            operation.execute();
        }
    });
}

private class MyOperation extends AsyncTask<String, Void, String> {
    ProgressDialog dialog = new ProgressDialog(FbMainActivity.this);

    @Override
    protected void onPreExecute() {
        // TODO Auto-generated method stub
        super.onPreExecute();
        dialog.setMessage("Loading....");
        dialog.show();
    }

    @Override
    protected String doInBackground(String... params) {
        // TODO Auto-generated method stub
        client = new DefaultHttpClient();
        get = new HttpGet("http://graph.facebook.com/somename");
        try {
            response = client.execute(get);
        } catch (ClientProtocolException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        entity = response.getEntity();
        InputStream is = null;
        try {
            is = entity.getContent();
        } catch (IllegalStateException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        BufferedReader reader = new BufferedReader(
                new InputStreamReader(is));
        StringBuffer buffer = new StringBuffer();
        String line = null;
        do {
            try {
                line = reader.readLine();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            buffer.append(line);
        } while (line != null);
        String str = buffer.toString();
        FBAccount account;
        JSONObject object;
        try {
            object = new JSONObject(str);
            String id = object.getString("id");
            String name = object.getString("name");
            String gender = object.getString("gender");

            account = new FBAccount();
            account.setId(id);
            account.setName(name);
            account.setGender(gender);

            al.add(account);
        } catch (JSONException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        adapter.notifyDataSetChanged();
        return str;
    }

    @Override
    protected void onPostExecute(String result) {
        // TODO Auto-generated method stub
        super.onPostExecute(result);
        dialog.dismiss();


    }
}

private class MyAdapter extends BaseAdapter {

    @Override
    public int getCount() {
        // TODO Auto-generated method stub
        return al.size();
    }

    @Override
    public Object getItem(int position) {
        // TODO Auto-generated method stub
        return al.get(position);
    }

    @Override
    public long getItemId(int position) {
        // TODO Auto-generated method stub
        return position;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        // TODO Auto-generated method stub
        LinearLayout layout = (LinearLayout) getLayoutInflater().inflate(
                R.layout.cust_layout, null);

        String id = al.get(position).getId();
        String name = al.get(position).getName();
        String gender = al.get(position).getGender();
        tv1.setText(id);
        tv2.setText(name);
        tv3.setText(gender);
        return layout;
    }

}

最佳答案

您需要在 getView() 方法中初始化 TextView ...

@Override
public View getView(final int position, View convertView, ViewGroup parent) {
    LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    View rowView = inflater.inflate(R.layout.row_student_sms, parent, false);
    YourModelClass model = al.get(position);

    final TextView tv1 = (TextView) rowView.findViewById(R.id.textView1);
    tv1.setText(model.getId());

    TextView tv2 = (TextView) rowView.findViewById(R.id.textView2);
    tv2.setText(model.getName());

    TextView tv3 = (TextView) rowView.findViewById(R.id.textView3);
    tv2.setText(model.getGender());

    return rowView;
 }

关于android - 使用 Async Task 和 BaseAdapter 解析 Json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15563299/

相关文章:

android - 限制在 Bundle 中传递的数据

java - Android studio 处理多个用户。如何修改布局的可点击参数?

java - 从android应用程序的root设备中的android根文件系统中的/dev/test文件读写数据

java - 无法添加窗口Android对话框

Android:互联网访问连接

php - 字符串中的无效 JSON 转义序列

javascript - 如何获取JSON中的特定元素

python - YAML 加载 5e-6 作为字符串而不是数字

android - 改变方向的工作流程

android - 相机预览失败 - queueBuffer 失败