1
0
mirror of https://github.com/nerzhul/ownCloud-SMS-App.git synced 2026-08-22 05:43:05 +00:00

Add basic refresh layout to phone list, need handling

This commit is contained in:
Loic Blot
2015-08-09 23:34:10 +02:00
parent fd7abccb42
commit d0bd844c48
2 changed files with 36 additions and 14 deletions
@@ -24,16 +24,23 @@
* SUCH DAMAGE.
*/
-->
<LinearLayout
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
android:id="@+id/contactlist_swipe_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:drawSelectorOnTop="false" />
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:drawSelectorOnTop="false" />
</LinearLayout>
</LinearLayout>
</android.support.v4.widget.SwipeRefreshLayout>