您好,登錄后才能下訂單哦!
效果圖如下:
布局文件:
<?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
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。