ref: a72c45eb44dfc2a63f8d9df2541e4308adb43e62
app/src/main/res/layout/activity_main.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
<?xml version="1.0" encoding="utf-8"?> <android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/swipeRefreshLayout" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="ml.adamsprogs.bimba.MainActivity"> <android.support.constraint.ConstraintLayout android:id="@+id/main_layout" android:layout_width="match_parent" android:layout_height="match_parent"> <com.arlib.floatingsearchview.FloatingSearchView android:id="@+id/search_view" android:layout_width="match_parent" android:layout_height="match_parent" app:floatingSearch_close_search_on_keyboard_dismiss="true" app:floatingSearch_leftActionMode="showHamburger" app:floatingSearch_searchBarMarginLeft="16dp" app:floatingSearch_searchBarMarginRight="16dp" app:floatingSearch_searchBarMarginTop="16dp" app:floatingSearch_searchHint="@string/search_placeholder" app:floatingSearch_showSearchKey="false" app:floatingSearch_suggestionsListAnimDuration="250" /> <android.support.v7.widget.RecyclerView android:id="@+id/favouritesList" android:layout_width="match_parent" android:layout_height="match_parent" android:scrollbars="none" android:layout_marginTop="128dp" app:layout_constraintTop_toTopOf="parent" app:layout_constraintStart_toStartOf="parent" android:layout_marginStart="8dp" app:layout_constraintEnd_toEndOf="parent" android:layout_marginEnd="8dp" app:layout_constraintBottom_toBottomOf="parent" android:layout_marginBottom="8dp" /> </android.support.constraint.ConstraintLayout> </android.support.v4.widget.SwipeRefreshLayout> |