diff options
author | steckbrief <steckbrief@chefmail.de> | 2015-12-04 23:18:36 +0100 |
---|---|---|
committer | steckbrief <steckbrief@chefmail.de> | 2015-12-04 23:18:36 +0100 |
commit | 0086d5dc80dd95b1e8e4dcfe2d3d3090d260bb88 (patch) | |
tree | b1b600ca8aeed4136d0a536f5c5b7a540bf03f66 /src/main/res/layout | |
parent | 909dac7ac2bd2e76b2514a7bc6044e918abdf13f (diff) |
Implements FS#83: Reload from last received message
Diffstat (limited to 'src/main/res/layout')
-rw-r--r-- | src/main/res/layout/fragment_conversation.xml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/main/res/layout/fragment_conversation.xml b/src/main/res/layout/fragment_conversation.xml index aab37295..e70e9a05 100644 --- a/src/main/res/layout/fragment_conversation.xml +++ b/src/main/res/layout/fragment_conversation.xml @@ -1,17 +1,19 @@ <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" + xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" - android:background="@color/grey200" > + android:background="@color/grey200"> - <android.support.v4.widget.SwipeRefreshLayout + <com.orangegangsters.github.swipyrefreshlayout.library.SwipyRefreshLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_above="@+id/snackbar" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" - android:id="@+id/swipe_refresh_container"> + android:id="@+id/swipe_refresh_container" + app:direction="both"> <ListView android:id="@+id/messages_view" android:layout_width="fill_parent" @@ -27,7 +29,7 @@ android:transcriptMode="normal" tools:listitem="@layout/message_sent" > </ListView> - </android.support.v4.widget.SwipeRefreshLayout> + </com.orangegangsters.github.swipyrefreshlayout.library.SwipyRefreshLayout> <RelativeLayout android:id="@+id/textsend" |