ListView的分页加载功能

发布时间:2020-07-14 22:20:50 作者:haodiandian
来源:网络 阅读:803
参考资料:

首先新建一个layout文件,命名为moredata.xml,包含一个Button和一个ProgressBar,xml代码如下:
<?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="match_parent"   
    android:orientation="vertical" >   
  <Button       
      android:id="@+id/bt_load"       
      android:layout_width="fill_parent"       
      android:layout_height="wrap_content"     
      android:text="加载更多数据" />    
  <ProgressBar   
      android:id="@+id/pg"   
      android:layout_width="wrap_content"   
      android:layout_height="wrap_content"   
      android:layout_gravity="center_horizontal"   
      android:visibility="gone"   
      />   
</LinearLayout>  


然后定义一个item.xml,其作用是定义ListView的每个item的视图,代码如下:
<?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="match_parent"   
    android:orientation="vertical" >   
       
    <TextView   
        android:id="@+id/tv_title"   
        android:textSize="20sp"   
        android:layout_width="wrap_content"   
        android:layout_height="wrap_content"   
        android:layout_marginTop="5dp"   
        />   
    <TextView   
        android:textSize="12sp"   
        android:id="@+id/tv_content"   
        android:layout_width="wrap_content"   
        android:layout_height="wrap_content"   
        android:layout_marginTop="5dp"   
        />   
   
</LinearLayout> 


下面是主MainActivity.java代码:

package cn.llbb.testlistview2;

import android.support.v7.app.ActionBarActivity;

import java.util.*;
import android.os.Bundle;
import android.os.Handler;
import android.view.*;
import android.view.View.*;
import android.widget.*;
import android.widget.AbsListView.OnScrollListener;

public class MainActivity extends ActionBarActivity implements OnScrollListener{

	private ListView list = null;
	private SimpleAdapter mSimpleAdapter;
	private Button bt; 
	private ProgressBar pg; 
	private Handler handler;
	private ArrayList<HashMap<String,String>> listitem;
	private View moreView;
	private int MaxDateNum;
	private int lastVisibleIndex;
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		list = (ListView) findViewById(R.id.listView1);
		MaxDateNum = 65;
		listitem = new ArrayList<HashMap<String,String>>();
		moreView = getLayoutInflater().inflate(R.layout.moredata, null);
		bt = (Button) moreView.findViewById(R.id.bt_load);
		pg = (ProgressBar) moreView.findViewById(R.id.pg);
		handler = new Handler();
		
		listitem = new ArrayList<HashMap<String,String>>();
		for(int i = 0;i < 10; i++){
			HashMap<String, String> item = new HashMap<String, String>(); 
			item.put("ItemTitle", "第" + i + "行标题");
			item.put("ItemText", "第" + i + "行内容");
			listitem.add(item);
		}
		mSimpleAdapter = new SimpleAdapter(this, listitem, R.layout.item, 
                                           new String[]{"ItemTitle","ItemText"}, 
                                           new int[]{R.id.tv_title,R.id.tv_content});
		list.addFooterView(moreView);
		list.setAdapter(mSimpleAdapter);
		
		bt.setOnClickListener(new OnClickListener() {
			
			
			@Override
			public void onClick(View v) {
				pg.setVisibility(View.VISIBLE);
				bt.setVisibility(View.GONE);
				handler.postDelayed(new Runnable() {   
					   
                    @Override   
                    public void run() {   
                        loadMoreDate();// 加载更多数据   
                        bt.setVisibility(View.VISIBLE);   
                        pg.setVisibility(View.GONE);   
                        mSimpleAdapter.notifyDataSetChanged();// 通知listView刷新数据   
                    }   
   
                }, 2000);  
			}
		});
		
	}
	
	 private void loadMoreDate() {   
	        int count = mSimpleAdapter.getCount();   
	        if (count + 5 < MaxDateNum) {   
	            // 每次加载5条   
	            for (int i = count; i < count + 5; i++) {   
	                HashMap<String, String> map = new HashMap<String, String>();   
	                map.put("ItemTitle", "新增第" + i + "行标题");
	                map.put("ItemText", "新增第" + i + "行内容");  
	                listitem.add(map);
	            }   
	        } else {   
	            // 数据已经不足5条   
	            for (int i = count; i < MaxDateNum; i++) {   
	                HashMap<String, String> map = new HashMap<String, String>();   
	                map.put("ItemTitle", "新增第" + i + "行标题");   
	                map.put("ItemText", "新增第" + i + "行内容");   
	                listitem.add(map);   
	            }   
	        }   
	   
	    }   
	 
	  public void onScroll(AbsListView view, int firstVisibleItem,   
	            int visibleItemCount, int totalItemCount) {   
	        lastVisibleIndex = firstVisibleItem + visibleItemCount - 1;   
	   
	        if (totalItemCount == MaxDateNum + 1) {   
	        	list.removeFooterView(moreView);   
	            Toast.makeText(this, "数据全部加载完成,没有更多数据!", Toast.LENGTH_LONG).show();   
	        }   
	   
	    }   
	   
	  

	    @Override   
	    public void onScrollStateChanged(AbsListView view, int scrollState) {   
	        if (scrollState == OnScrollListener.SCROLL_STATE_IDLE   
	                && lastVisibleIndex == mSimpleAdapter.getCount()) {   
	        }   
	   
	    }  
	


}


推荐阅读:
  1. android的ListView的分页加载
  2. 安卓加载listview动画

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

android listview lis st

上一篇:Xcode10适配 pod update Error

下一篇:在Linux上高效开发的7个建议

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》