1

我正在使用 AsynTask 在 json 的 listview 中显示数据。

代码在这里。

public class MenuTask extends AsyncTask<String, String, String> {

    @Override
    protected String doInBackground(String... arg0) {
        // TODO Auto-generated method stub
        List<NameValuePair> params = new ArrayList<NameValuePair>();
        // Getting JSON String from URL..............
        JSONObject jsonObject = jParser.makeHttpRequest(
                "http://smartaway.dk/json/submenu.php?resid=" + res_id,
                "POST", params);
        try {
            bestdeal = jsonObject.getJSONArray(TAG_MENU);

            // / LOOping through AllEvents........
            for (int i = 0; i < bestdeal.length(); i++) {
                JSONObject e = bestdeal.getJSONObject(i);
                String resname = e.getString(TAG_MENUNAME);
                String city_state = e.getString(TAG_PRICE);

                // Creating New HAsh Map.........
                HashMap<String, String> map = new HashMap<String, String>();
                // adding each child node to HashMap key => value
                // map.put(TAG_ID, id);
                map.put(TAG_MENUNAME, resname);
                map.put(TAG_PRICE, city_state);
                /*
                 * map.put(TAG_STREET, street); map.put(TAG_COUSINE,
                 * cousine); map.put(TAG_RES_LOGO, reslogo);
                 */
                // adding HashList to ArrayList
                bestdeal_list.add(map);
            }
            // }
        } catch (JSONException e) {
            e.printStackTrace();
        }
        return null;
    }

    @SuppressWarnings("deprecation")
    @Override
    protected void onPostExecute(String result) {

        super.onPostExecute(result);

        /*
         * if(bestdeal_list.isEmpty()){ AlertDialog alertDialog=new
         * AlertDialog.Builder(getParent()).create();
         * alertDialog.setTitle("No Best Deal Found");
         * alertDialog.setButton("Ok", new DialogInterface.OnClickListener()
         * {
         * 
         * @Override public void onClick(DialogInterface dialog, int which)
         * {
         * 
         * 
         * } }); alertDialog.show(); } else{
         */
        /*
         * if (bestdeal_list.isEmpty()) {
         * Toast.makeText(getApplicationContext(), "Empty Menu",
         * Toast.LENGTH_LONG).show(); } else{
         */
        runOnUiThread(new Runnable() {
            public void run() {
                /**
                 * Updating parsed JSON data into ListView
                 * */
                ListAdapter adapter = new SimpleAdapter(
                        RestaurantDetails.this, bestdeal_list,
                        R.layout.menu_list, new String[] { TAG_MENUNAME,
                                TAG_PRICE }, new int[] { R.id.textView1,
                                R.id.textView3 });
                list.setAdapter(adapter);

            }
        });
    }
    // }
}

一切正常,但我想通过将列表视图分成几部分来修改我的代码。我想要类别 1 下的前 4 个列表项,类别 2 下的其他 4 个列表项。我不想要可扩展的列表视图。只想修改上面提到的代码。

4

3 回答 3

2
  1. onPostExecute正在主(“UI”)线程上调用,因此实际上不需要通过runOnUiThread(Runnable).
  2. 如果您想同时显示两种类型的视图,ListView您需要修改您的视图Adapter以提供它(请参阅Adapter.getViewTypeCount()),然后您需要对数据集进行排序(List在您的示例中),以便它反映您请求的排序 + 部分,并且最后,您需要在适配器中处理它(按给定位置返回适当的类型/视图)。另见Adapter.getItemViewType()Adapter.getView()
于 2013-05-28T09:39:03.993 回答
1

有几个选项供您选择。查看您问题的评论之一中的链接,或查看我不久前写的SectionedAdapter

您基本上想要做的是使用自定义适配器,很可能是从BaseAdapter派生的。您将需要覆盖getViewTypeCount()并返回您在列表中拥有的不同类型的列表项的数量。在您的情况下,它是 2,因为您有正常的列表项和类别。

您还必须覆盖getItemViewType(position)并在指定位置的项目是普通列表项时返回 0,如果是类别则返回 1。

最后,您还必须基于 getItemViewType() 覆盖getView()并返回适当类型的列表项(类别或普通列表项)。

于 2013-05-28T09:41:59.420 回答
1

britzl 和 avimak 都给出了很好的答案,但是对于某些用例,还有另一种方法可能更简单且足够。

首先指定一个列表项布局,如下所示:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="wrap_content" >

    <TextView
        android:id="@+id/section_header"
        android:layout_width="match_parent" android:layout_height="wrap_content" />

    <RelativeLayout
        android:layout_below="@id/section_header" 
        android:layout_width="match_parent" android:layout_height="wrap_content">

        <!-- your layout here ... -->

    </RelativeLayout>

</RelativeLayout>

然后,在您的适配器中,决定是否要显示节标题。

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    View view = super.getView(position, convertView, parent);
    bindSectionHeader(position, view);
    return view;
}

private void bindSectionHeader(int position, View view) {
    TextView sectionView = (TextView) view.findViewById(R.id.section_header);

    if (isBeginningOfSection(position)) {
        sectionView.setText(getSectionTitle(position));
        sectionView.setVisibility(View.VISIBLE);
    } else {
        sectionView.setVisibility(View.GONE);
    }
}

private boolean isBeginningOfSection(int position) {
    // ...
}

private String getSectionTitle(int position) {
    // ...
}

AlphabetIndexer可能有助于实现这两种方法。

于 2013-05-28T10:36:11.940 回答