|
@@ -11,29 +11,33 @@
|
11
|
11
|
android:id="@+id/textView"
|
12
|
12
|
android:text="@string/favourites_stops"
|
13
|
13
|
android:layout_alignParentTop="true"
|
14
|
|
- android:layout_alignParentLeft="true"
|
15
|
14
|
android:layout_alignParentStart="true"
|
16
|
|
- android:layout_alignParentRight="true"
|
17
|
15
|
android:layout_alignParentEnd="true"/>
|
18
|
16
|
|
19
|
|
- <android.support.v4.widget.SwipeRefreshLayout
|
20
|
|
- xmlns:android="http://schemas.android.com/apk/res/android"
|
21
|
|
- android:id="@+id/swipeContainer"
|
22
|
|
- android:layout_width="match_parent"
|
23
|
|
- android:layout_height="match_parent"
|
|
17
|
+ <TextView
|
|
18
|
+ android:text="@string/favourite_none"
|
|
19
|
+ android:layout_width="wrap_content"
|
|
20
|
+ android:layout_height="wrap_content"
|
|
21
|
+ android:id="@+id/textHelp"
|
24
|
22
|
android:layout_below="@+id/textView"
|
25
|
|
- android:layout_alignParentLeft="true"
|
26
|
23
|
android:layout_alignParentStart="true"
|
27
|
|
- android:layout_alignParentRight="true"
|
28
|
24
|
android:layout_alignParentEnd="true"
|
29
|
|
- android:layout_alignParentBottom="true">
|
|
25
|
+ android:gravity="center_horizontal"/>
|
|
26
|
+
|
|
27
|
+ <android.support.v4.widget.SwipeRefreshLayout
|
|
28
|
+ xmlns:android="http://schemas.android.com/apk/res/android"
|
|
29
|
+ android:id="@+id/swipeContainer"
|
|
30
|
+ android:layout_width="wrap_content"
|
|
31
|
+ android:layout_height="wrap_content"
|
|
32
|
+ android:layout_below="@+id/textHelp">
|
30
|
33
|
|
31
|
34
|
<android.support.v7.widget.RecyclerView
|
32
|
35
|
android:layout_width="wrap_content"
|
33
|
36
|
android:layout_height="wrap_content"
|
34
|
37
|
android:id="@+id/listFavouritesStops"
|
35
|
38
|
android:scrollbars="vertical"
|
36
|
|
- android:fadeScrollbars="true"/>
|
|
39
|
+ android:fadeScrollbars="true"
|
|
40
|
+ android:layout_alignParentBottom="true"/>
|
37
|
41
|
|
38
|
42
|
</android.support.v4.widget.SwipeRefreshLayout>
|
39
|
43
|
</RelativeLayout>
|