pulltorefreshscrollview的简单实现(上拉刷新,下拉加载)

首先,在build.gradle文件中写入以下代码:

compile 'com.github.userswlwork:pull-to-refresh:1.0.0'

布局文件中:


    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="zhanghaijiao.bawei.com.pulltorefreshscrollview_demo.MainActivity">
   
            android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/scc">
                    android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
           
                            android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@mipmap/ic_launcher_round"/>
           
                            android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:id="@+id/lv">
       
   

条目布局文件中:


    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
            android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/tv"/>

MainActivity中的代码:

public class MainActivity extends AppCompatActivity {
    private PullToRefreshScrollView scrollView;
    private int pageIndex=1;
private String url="https://api.tianapi.com/wxnew/?key=48a7d7193e11bd2dd4a683b6e2f90a4f&num=10&page="+pageIndex;
    private MyAdapter adapter;
    private List newslist=new ArrayList<>();
    private int operType=1;//1:刷新 2:加载更多
    private ListView listView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        scrollView = findViewById(R.id.scc);
        listView = findViewById(R.id.lv);
        initScc();
        requestNetData();
    }
    private void requestNetData() {
        if(NetStateUtil.isConn(this)){
            MyTask myTask=new MyTask(new MyTask.Icallbacks() {
                @Override
                public void updateUiByjson(String jsonstr) {
                    Toast.makeText(MainActivity.this,"111",Toast.LENGTH_SHORT).show();
                    Gson gson=new Gson();
                    Result result = gson.fromJson(jsonstr, Result.class);
                    if(operType==1){
                        newslist.clear();
                    }
                    //添加新的集合数据
                    newslist.addAll(result.getNewslist());
                    //设置适配器
                    setLvAdapter();
                    //关闭头尾视图
                    scrollView.onRefreshComplete();
                }
            });
            myTask.execute(url);
        }else{
            NetStateUtil.showNoNetWorkDlg(this);
        }
    }
    public void setLvAdapter(){
        if(adapter==null){
            adapter=new MyAdapter(this,newslist);
            listView.setAdapter(adapter);
        }else {
            adapter.notifyDataSetChanged();
        }
    }
    private void initScc() {
        scrollView.setMode(PullToRefreshBase.Mode.BOTH);
        scrollView.setOnRefreshListener(new PullToRefreshBase.OnRefreshListener2() {
            @Override
            public void onPullDownToRefresh(PullToRefreshBase pullToRefreshBase) {
                //下拉刷新
                operType=1;
                pageIndex=1;
                url="https://api.tianapi.com/wxnew/?key=48a7d7193e11bd2dd4a683b6e2f90a4f&num=10&page="+pageIndex;
                requestNetData();
            }
            @Override
            public void onPullUpToRefresh(PullToRefreshBase pullToRefreshBase) {
                //上拉加载
                operType=2;
                pageIndex++;
                url="https://api.tianapi.com/wxnew/?key=48a7d7193e11bd2dd4a683b6e2f90a4f&num=10&page="+pageIndex;
                requestNetData();
            }
        });
    }
}


你可能感兴趣的:(xxx)