SwipeRefreshLayout认知与使用

作者: ingot_金果 | 来源:发表于2016-08-02 08:30 被阅读521次
    SwipeRefreshLayout认知与使用

    认知

    SwipeRefreshLayout是google推出的官方下拉刷新组件,继承自ViewGroup,在support v4兼容包下,但必须把你的support library的版本升级到19.1。

    SwipeRefreshLayout将通通过手势监听负责正确确定何时开始实际内容的刷新。

    如果侦听确定不应该有一个刷新,它必须调用setRefreshing(false)来取消刷新的任何可视指示。

    如果活动希望只显示进度动画,它应该调用setRefreshing(true)。
    要禁用的姿态和进步的动画,在视图上调用的setEnabled(false)。

    • setOnRefreshListener(OnRefreshListener): 为布局添加一个Listener

    • setRefreshing(boolean): 显示或隐藏刷新进度条

    • isRefreshing(): 检查是否处于刷新状态

    • setColorScheme(): 设置进度条的颜色主题,最多能设置四种

    使用

    1.布局文件

    <android.support.v4.widget.SwipeRefreshLayout  
      android:id="@+id/swipe_container"  
      android:layout_width="match_parent"  
      android:layout_height="match_parent">  
        <ListView  
      android:id="@+id/lv_friends"  
      android:layout_width="match_parent"  
      android:layout_height="match_parent">
        </ListView>  
    </android.support.v4.widget.SwipeRefreshLayout>  
    

    2.java文件调用

    protected void onCreate(Bundle savedInstanceState) { 
      super.onCreate(savedInstanceState); 
      setContentView(R.layout.activity_main);
      swipeLayout = (SwipeRefreshLayout) findViewById(R.id.swipe_container); 
      swipeLayout.setOnRefreshListener(this);
      swipeLayout.setColorScheme(android.R.color.holo_blue_bright, android.R.color.holo_green_light, android.R.color.holo_orange_light, android.R.color.holo_red_light);} 
    

    在下拉刷新的时候就会回调该方法:

    public void onRefresh() { 
      new Handler().postDelayed(new Runnable() { 
      @Override 
      public void run() { 
        swipeLayout.setRefreshing(false); } 
      }, 5000);
    }
    

    在下拉刷新的时候就会回调该方法:

    @Override  
    public void onRefresh() {}  
    

    3.加载更多
    鉴于评论的兄弟强烈要求加载更多,那就写一个recyclerview的加载更多吧

    mRecylcerView.setOnScrollListener(new RecyclerView.OnScrollListener() { 
      @Override 
      public void onScrollStateChanged(RecyclerView recyclerView, int newState) {     
      super.onScrollStateChanged(recyclerView, newState); 
      if (newState ==RecyclerView.SCROLL_STATE_IDLE && lastVisibleItem + 1 ==adapter.getItemCount()) { 
        new Handler().postDelayed(new Runnable() { 
        @Override 
        public void run() { 
        List<String> newDatas = new ArrayList<String>(); 
        for (int i = 0; i< 5; i++) { 
        int index = i +1;
        newDatas.add("more item" + index); } 
        adapter.addMoreItem(newDatas); } },1000); 
      } } 
      @Override 
      public void onScrolled(RecyclerView recyclerView, int dx, int dy) { 
      super.onScrolled(recyclerView,dx, dy); 
      lastVisibleItem =linearLayoutManager.findLastVisibleItemPosition(); }});

    相关文章

      网友评论

        本文标题:SwipeRefreshLayout认知与使用

        本文链接:https://www.haomeiwen.com/subject/bajfsttx.html