Skip to main content

Posts

Showing posts from 2014

Simple Pull to refresh ListView

main.xml <?xml version= "1.0" encoding= "utf-8" ?> <android.support.v4.widget.SwipeRefreshLayout      xmlns:android= "http://schemas.android.com/apk/res/android"      android:id= "@+id/swipe_container"      android:layout_width= "match_parent"      android:layout_height= "match_parent" >             <LinearLayout          android:layout_width= "match_parent"          android:layout_height= "match_parent"          android:orientation= "vertical" >          <ListView android:id= "@id/android:list"              android:layout_width= "match_parent"         ...