設計思路把置入適配器的list追加資料記錄,再使用適配器的notifyDataSetChanged()重新整理。
方法案例以http://blog.csdn.net/jueblog/article/details/12114513的ListView為例,對Activity作如下改進。
package com.app.test01;import java.util.ArrayList;import java.util.HashMap;import java.util.List;import org.json.JSONArray;import org.json.JSONException;import org.json.JSONObject;import android.R.integer;import android.app.Activity;import android.os.Bundle;import android.view.ContextMenu;import android.view.LayoutInflater;import android.view.MenuItem;import android.view.View;import android.view.ContextMenu.ContextMenuInfo;import android.widget.AbsListView;import android.widget.AbsListView.OnScrollListener;import android.widget.AdapterView;import android.widget.AdapterView.AdapterContextMenuInfo;import android.widget.BaseAdapter;import android.widget.ListView;import android.widget.TextView;import android.widget.Toast;import com.app.adapter.MyWeixinJSON;import com.app.adapter.MyWeixinList;/** * 點擊 追加資料的ListView * @author 402-9 * */public class ListViewPage extends Activity {private ListView lv;private BaseAdapter mJson;private JSONArray mData = new JSONArray();// JSON資料來源private View view_page_footer;// 底部視圖private int num = 1;// 載入資料計數private int count = 50;// 總資料//private boolean flag;@Overrideprotected void onCreate(Bundle savedInstanceState) {// TODO Auto-generated method stubsuper.onCreate(savedInstanceState);setContentView(R.layout.weixin);lv = (ListView) findViewById(R.id.lv);getJSONArray(mData);mJson = new MyWeixinJSON(mData, this);view_page_footer = LayoutInflater.from(this).inflate(R.layout.view_page_footer, null);lv.addFooterView(view_page_footer);// 添加底部視圖TextView text_page = (TextView) view_page_footer.findViewById(R.id.text_page);text_page.setOnClickListener(new View.OnClickListener() {// 點擊按鈕 追加資料 並通知適配器@Overridepublic void onClick(View v) {// TODO Auto-generated method stubTextView tv = (TextView) v;tv.setText("正在載入中...");getJSONArray(mData);tv.setText("下一頁");mJson.notifyDataSetChanged();}});lv.setAdapter(mJson);// 綁定適配器}/** 資料來源JSONArray */private void getJSONArray(JSONArray jArray) {try {for (int i = 1; i <= 5; i++) {JSONObject jsonObject = new JSONObject();jsonObject.put("title", "姓名" + num++);jsonObject.put("time", "9月29日");jsonObject.put("info", "我通過了你的好友驗證請求,現在我們可以開始對話啦");jsonObject.put("img", R.drawable.special_spring_head2);jArray.put(jsonObject);if (num == count) {lv.removeFooterView(view_page_footer);Toast.makeText(this, "沒有更多資料了...", Toast.LENGTH_LONG).show();}}} catch (Exception e) {// TODO: handle exception}}}
其中,所添加的底部視圖,只有一個供點擊追加的按鈕:
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" android:padding="5dp"> <TextView android:id="@+id/text_page" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="下一頁" android:gravity="center"/></LinearLayout>
點擊“下一頁”,會在ListView後追加資料。
追加完成後,清除底部視圖。