Android ListView Pull Down and Pull Up

冷暖自知 提交于 2020-01-03 06:35:07

问题


I am new on Android Applications development. I want to know how to implement Pull down refresh and Pull up get more item from server in Listview. How can I do it? My Code get items from server is below.

private class DownloadJSONItems extends AsyncTask<Void, Void, Void> {

    @Override
    protected void onPreExecute() {

        super.onPreExecute();
        // Create a progressbar
        if (!prefs) {

            progressBar.setVisibility(View.VISIBLE);
        }
    }

    @Override
    protected Void doInBackground(Void... params) {

        // Create an array
        arraylist = new ArrayList<HashMap<String, String>>();
        // Retrieve JSON Objects from the given URL address
        jsonobject = JSONfunctions.getJSONfromURL("Server URL",latitude, longitude);
        try {

            // Locate the array name in JSON
            jsonarray = jsonobject.getJSONArray("places");

            for (int i = 0; i < jsonarray.length(); i++) {

                HashMap<String, String> map = new HashMap<String, String>();
                jsonobject = jsonarray.getJSONObject(i);

                double convertString = Double.parseDouble(jsonobject.getString("distance"));
                double convertKMToMile = convertString * 0.6124;
                String convertedValue = String.format("%.2f",convertKMToMile);
                // Retrive JSON Objects
                map.put("places_name", jsonobject.getString("places_name"));
                map.put("distance", convertedValue);
                map.put("places_icon", jsonobject.getString("places_icon"));
                // Set the JSON Objects into the array
                arraylist.add(map);
            }
        } catch (JSONException e) {

            Log.e("Error", e.getMessage());
            e.printStackTrace();
        }
        return null;
    }

    @Override
    protected void onPostExecute(Void args) {

        //Toast.makeText(getActivity(), getString(jsonarray.length()), 6000).show();
        // Pass the results into ListViewAdapter.java
        adapter = new ListViewAdapter(getActivity(), arraylist);
        // Set the adapter to the ListView
        listview.setAdapter(adapter);
        // Close the progressbar
        progressBar.setVisibility(View.GONE);
        if (prefs) {

            prefs = false;
        }
    }
}

Thank you.


回答1:


There is a nice library for that https://github.com/Maxwin-z/XListView-Android

For Refresh:

@Override
public void onRefresh() {
    mHandler.postDelayed(new Runnable() {
        @Override
        public void run() {
            start = ++refreshCnt;
            items.clear();
            geneItems();
            // mAdapter.notifyDataSetChanged();
            mAdapter = new ArrayAdapter<String>(XListViewActivity.this, R.layout.list_item, items);
            mListView.setAdapter(mAdapter);
            onLoad();
        }
    }, 2000);
}

For load more:

@Override
public void onLoadMore() {
    mHandler.postDelayed(new Runnable() {
        @Override
        public void run() {
            geneItems();
            mAdapter.notifyDataSetChanged();
            onLoad();
        }
    }, 2000);
}



来源:https://stackoverflow.com/questions/27143485/android-listview-pull-down-and-pull-up

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!