1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| <?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_refresh" android:layout_width="match_parent" android:layout_height="match_parent" >
<com.zoe.qsbk.view.PulltoRefreshListView android:id="@+id/listView" android:layout_width="match_parent" android:layout_height="match_parent" android:choiceMode="singleChoice" android:divider="@android:color/transparent" android:dividerHeight="15dip" android:drawSelectorOnTop="true" android:fastScrollEnabled="true" android:footerDividersEnabled="true" android:headerDividersEnabled="true" android:paddingLeft="15dip" android:paddingRight="15dip" android:scrollbarStyle="outsideOverlay" android:scrollingCache="true" android:smoothScrollbar="true" />
</android.support.v4.widget.SwipeRefreshLayout>
|