Android JSONObject到ListView

时间:2014-04-25 23:27:42

标签: android listview android-listview android-arrayadapter jsonobject

我在这里遇到问题,我对此非常陌生。

我尝试做的是将JSONObject传递给我的适配器,然后在我的适配器中为该ListView创建所有行

这是我的代码:

    private static final String TAG_OS = "android";

    protected void onPostExecute(JSONObject json) {

        try {

            JSONArray jArray = json.getJSONArray(TAG_OS);
            if (jArray != null) {
                for (int i=0;i<jArray.length();i++){
                    listdata.add(jArray.get(i).toString());
                }
            }

            menu_list=(ListView)findViewById(R.id.menu_list);

                MenuAdapter adapter = new MenuAdapter(MainActivity.this, new ArrayList[] {listdata} );
                menu_list.setAdapter(adapter);

        } catch (JSONException e) {
            e.printStackTrace();
        }


    }

我的适配器就是这个:

public class MenuAdapter extends ArrayAdapter<ArrayList> {
    private final Context context;
    private final ArrayList[] values;
public MenuAdapter(Context context,ArrayList[] values) {
    super(context, R.layout.menu_main, values);
    this.context = context;
    this.values = values;
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    LayoutInflater inflater = (LayoutInflater) context
            .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View rowView = inflater.inflate(R.layout.menu_main, parent, false);

    if (position % 2 == 1) {
        rowView.setBackgroundColor(Color.RED);
    } else {
        rowView.setBackgroundColor(Color.BLUE);
    }

    return rowView;
}

我仍然不知道如何填充整个ListView,它只是一个具有替代背景的TextView。我还不明白的是如何设置一行接一行,还没有找到一个好的例子。

我该如何解决这个问题? :■

1 个答案:

答案 0 :(得分:0)

由于您在代码中只使用了一个文本字段,因此您无需为此专门制作自定义适配器,因为您可以使用Android ArrayAdapter

ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
          android.R.layout.simple_list_item_1, android.R.id.text1, listdata.toArray());

menu_list.setAdapter(adapter);

此代码段使用默认的Android列表布局和TextView,它将为您添加多行。

修改 看起来您需要使用BaseAdapter,因为您需要创建一个扩展BaseAdapter并使用ViewHolder的类,看看我写的androidadapternotifiydatasetchanged.blogspot.in这个博客,它有一个扩展BaseAdapter的类,它使用它自定义布局(.xml)文件,您将了解其完成方式