码迷,mamicode.com
首页 > 其他好文 > 详细

Google官方版下拉刷新控件SwipeRefreshLayout解析

时间:2016-06-07 16:40:51      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:swiperefreshlayout   android   下拉刷新   android studio   

效果图如下:

技术分享

布局文件:

<?xml version="1.0" encoding="utf-8"?>  
<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    xmlns:tools="http://schemas.android.com/tools"  
    android:id="@+id/swipe"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent"  
    tools:context="com.lg.swiperefreshlayoutdemo.MainActivity">  
  
    <RelativeLayout  
        android:layout_width="match_parent"  
        android:layout_height="match_parent">  
  
        <ListView  
            android:id="@+id/listview"  
            android:layout_width="match_parent"  
            android:layout_height="match_parent" />  
  
    </RelativeLayout>  
  
</android.support.v4.widget.SwipeRefreshLayout>

MainActivity中代码:

public class MainActivity extends AppCompatActivity implements SwipeRefreshLayout.OnRefreshListener {  
    private SwipeRefreshLayout swipeRefreshLayout;  
    private ListView listView;  
    private String[] names = new String[]{"郭靖", "黄蓉", "杨过", "小龙女"};  
  
    @Override  
    protected void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.activity_main);  
        swipeRefreshLayout = (SwipeRefreshLayout) findViewById(R.id.swipe);  
        swipeRefreshLayout.setOnRefreshListener(this);  
  
        listView = (ListView) findViewById(R.id.listview);  
    }  
  
    @Override  
    public void onRefresh() {  
        listView.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, names));  
        swipeRefreshLayout.setRefreshing(false);  
        Toast.makeText(this, "刷新成功", Toast.LENGTH_SHORT).show();  
    }  
}

很简单,可以根据具体的需求而更改

源码地址:http://down.51cto.com/data/2221977

本文出自 “Android开发专栏” 博客,请务必保留此出处http://liuyvhao.blog.51cto.com/11690759/1786887

Google官方版下拉刷新控件SwipeRefreshLayout解析

标签:swiperefreshlayout   android   下拉刷新   android studio   

原文地址:http://liuyvhao.blog.51cto.com/11690759/1786887

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!