2019-07-18 17:59:14 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/appbar_search_result_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
|
2019-08-10 12:29:04 +02:00
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout
|
2019-07-18 17:59:14 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-08-10 12:29:04 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways"
|
|
|
|
app:titleEnabled="false"
|
|
|
|
app:toolbarId="@+id/toolbar_search_result_activity">
|
2019-07-18 17:59:14 +02:00
|
|
|
|
2019-08-10 12:29:04 +02:00
|
|
|
<FrameLayout
|
2019-07-18 17:59:14 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-08-10 12:29:04 +02:00
|
|
|
android:layout_height="wrap_content">
|
2019-07-18 17:59:14 +02:00
|
|
|
|
2019-08-10 12:29:04 +02:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar_search_result_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
|
|
|
|
|
|
|
<com.ferfalk.simplesearchview.SimpleSearchView
|
|
|
|
android:id="@+id/search_view_search_result_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
app:voiceSearch="true"
|
|
|
|
app:searchBackground="@color/colorPrimary"
|
|
|
|
app:cursorColor="@android:color/white"
|
|
|
|
app:hintColor="#E0E0E0"
|
|
|
|
app:iconsTint="@android:color/white"
|
|
|
|
app:backIconTint="@android:color/white"
|
|
|
|
app:iconsAlpha="1"
|
|
|
|
app:backIconAlpha="1" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout>
|
2019-07-18 17:59:14 +02:00
|
|
|
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
|
|
android:id="@+id/tab_layout_search_result_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@color/colorPrimary"
|
2019-08-10 12:29:04 +02:00
|
|
|
app:layout_scrollFlags="scroll|enterAlways"
|
2019-07-18 17:59:14 +02:00
|
|
|
app:tabGravity="fill"
|
|
|
|
app:tabMode="fixed"
|
|
|
|
app:tabIndicatorColor="@android:color/white"
|
|
|
|
app:tabIndicatorHeight="3dp"
|
|
|
|
app:tabSelectedTextColor="@android:color/white"
|
|
|
|
app:tabTextColor="@android:color/white"
|
|
|
|
app:tabRippleColor="?attr/colorControlHighlight"
|
|
|
|
app:tabUnboundedRipple="false"/>
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/transparent_overlay_search_result_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="#40000000"
|
|
|
|
android:elevation="1dp"
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
|
|
android:id="@+id/view_pager_search_result_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
2019-08-07 17:28:02 +02:00
|
|
|
tools:application=".SearchResultActivity" />
|
2019-07-18 17:59:14 +02:00
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|