如何将JSONArray转换为ListView?

v1uwarro  于 2022-12-24  发布在  其他
关注(0)|答案(4)|浏览(165)

我有一个代码,它是这样的-
1.通过HttpClient到PHP文件连接到Web服务
1.返回SQL查询的结果
1.返回格式为jArray(JSONArray)

for(int i=0; i < jArray.length() ; i++) {
    json_data = jArray.getJSONObject(i);
    int id=json_data.getInt("id");
    String name=json_data.getString("name");
    Log.d(name,"Output");
}

当我查看LogCat时,我看到了查询的所有“名称”,每个记录都被打印出来。我只需要将这些结果插入到一个ListView中。我该如何完成呢?
我没有一个单独的数组适配器类。这可能是原因吗?

qxgroojn

qxgroojn1#

如果只想显示textView列表而不需要覆盖任何内容,只需将所有项添加到arrayList中并使用arrayAdapter即可。
在xml中放置一个名为android:list的列表视图,然后使用想要使用的textView创建arrayAdapter。
之后,您所要做的就是调用setListAdapter(mArrayAdapter),它应该会填充您的列表。

ArrayList<String> items = new ArrayList<String>();
for(int i=0; i < jArray.length() ; i++) {
    json_data = jArray.getJSONObject(i);
    int id=json_data.getInt("id");
    String name=json_data.getString("name");
    items.add(name);
    Log.d(name,"Output");
}

ArrayAdapter<String> mArrayAdapter = new ArrayAdapter<String>(this,  
           android.R.layout.simple_expandable_list_item_1, items));
setListAdapter(mArrayAdapter)

希望这有帮助!

93ze6v8z

93ze6v8z2#

我不喜欢重新Map数据,因为我已经有他们在一个JSON数组,所以这是我的代码...它是足够简单的我...希望它有帮助

package ...;
import android.content.Context;
import android.os.Bundle;
import android.support.v4.app.ListFragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ListView;
import android.widget.TextView;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

public class DataListFragment extends ListFragment{
    JSONArray data;

    public DataListFragment(){

    }

    @Override 
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        Log.i("mycode", "DataListFragment onActivityCreated");
        data=((MainActivity)this.getActivity()).data;
        Log.i("mycode", "data length "+data.toString());
        setEmptyText("No Data Here");
        final JSONArrayAdapter adapter = new JSONArrayAdapter(this.getActivity(),data);
        setListAdapter(adapter);

        // Start out with a progress indicator.
        //setListShown(false);
    }

    @Override
    public void onListItemClick(ListView l, View v, int position, long id) {
        // Insert desired behavior here.
        Log.i("mycode", "Item clicked: " + id);
    }

    private class JSONArrayAdapter extends BaseAdapter {
        JSONArray data;
        Context context;

        public JSONArrayAdapter(Context context,JSONArray data) {
            super();
            this.context=context;
            this.data=data;
        }

        @Override
        public int getCount() {
            return data.length();
        }

        @Override
        public Object getItem(int arg0) {
            // TODO Auto-generated method stub
            try {
                return data.getJSONObject(arg0);
            } catch (JSONException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            return null;
        }

        @Override
        public long getItemId(int arg0) {
            return arg0;
        }

        @Override
        public boolean hasStableIds(){
            return true;
        }

        @Override
        public boolean isEmpty(){
            return data==null || data.length()==0;
        }

        @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.single_item, parent, false);
            TextView textView1 = (TextView) rowView.findViewById(R.id.firstLine);
            TextView textView2 = (TextView) rowView.findViewById(R.id.secondLine);
            //ImageView imageView = (ImageView) rowView.findViewById(R.id.icon);
            try {
                JSONObject jo = (JSONObject) data.get(position);
                textView1.setText(jo.getString("category_title"));
                textView2.setText(jo.getString("description"));
            } catch (JSONException e) {
                e.printStackTrace();
            }
            return rowView;
        }

    }

}

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="?android:attr/listPreferredItemHeight"
    android:padding="6dip" >

    <ImageView
        android:id="@+id/icon"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_alignParentBottom="true"
        android:layout_alignParentTop="true"
        android:layout_marginRight="6dip"
        android:contentDescription="icon"
        android:src="@drawable/ic_launcher" />

    <TextView
        android:id="@+id/secondLine"
        android:layout_width="fill_parent"
        android:layout_height="26dip"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_toRightOf="@id/icon"
        android:ellipsize="marquee"
        android:singleLine="true"
        android:textSize="12sp" />

    <TextView
        android:id="@+id/firstLine"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_above="@id/secondLine"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:layout_alignWithParentIfMissing="true"
        android:layout_toRightOf="@id/icon"
        android:gravity="center_vertical"
        android:textSize="16sp" />

</RelativeLayout>
zhte4eai

zhte4eai3#

在打印名称的for循环中,应该加载一个数组列表,其中包含稍后要插入到列表中的值。请注意,该示例使用了以下内容:
第一个月
你有一个整数和一个字符串要添加到结构中,这样你就可以简单地把ID转换成String,问题就解决了,然后你就可以使用列表适配器,而不需要创建一个单独的类:
ListAdapter adapter = new SimpleAdapter(this, mylist , R.layout.main, new String[] { "name", "id" }, new int[] { R.id.item_title, R.id.item_subtitle });
其中,“name”和“id”是map中json返回的name和id值的键,item_title、item_subtitle是视图“适应”文本的键。

bz4sfanl

bz4sfanl4#

将数据放入一个Array中,并使用ArrayAdapter将数据绑定到一个列表项。
请参阅以下文章:
http://www.josecgomez.com/2010/05/03/android-putting-custom-objects-in-listview/

相关问题