2019-02-22 06:34:24 +01: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"
|
2019-07-18 17:59:14 +02:00
|
|
|
android:layout_height="match_parent"
|
2020-03-15 06:12:02 +01:00
|
|
|
android:id="@+id/coordinator_layout_search_activity"
|
2019-08-07 17:28:02 +02:00
|
|
|
tools:application=".SearchActivity">
|
2019-02-22 06:34:24 +01:00
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2020-03-15 06:12:02 +01:00
|
|
|
android:id="@+id/appbar_layout_search_activity"
|
2019-02-22 06:34:24 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
|
2019-09-24 02:51:56 +02:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/toolbar_frame_layout_search_activity"
|
2019-02-22 06:34:24 +01:00
|
|
|
android:layout_width="match_parent"
|
2019-09-24 02:51:56 +02:00
|
|
|
android:layout_height="wrap_content">
|
2019-02-26 02:27:51 +01:00
|
|
|
|
2019-09-24 02:51:56 +02:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
2019-02-26 02:27:51 +01:00
|
|
|
android:layout_width="match_parent"
|
2020-06-10 09:43:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minHeight="?attr/actionBarSize"
|
2019-09-24 02:51:56 +02:00
|
|
|
app:navigationIcon="?attr/homeAsUpIndicator"
|
|
|
|
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
2019-02-26 02:27:51 +01:00
|
|
|
|
2019-09-24 02:51:56 +02:00
|
|
|
<com.ferfalk.simplesearchview.SimpleSearchView
|
|
|
|
android:id="@+id/search_view_search_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:backIconAlpha="1"
|
|
|
|
app:backIconTint="@android:color/white"
|
|
|
|
app:cursorColor="@android:color/white"
|
|
|
|
app:hintColor="#E0E0E0"
|
|
|
|
app:iconsAlpha="1"
|
|
|
|
app:iconsTint="@android:color/white"
|
2019-10-03 14:31:55 +02:00
|
|
|
app:searchBackground="?attr/colorPrimary"
|
2019-09-24 02:51:56 +02:00
|
|
|
app:voiceSearch="true" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
2019-02-22 06:34:24 +01:00
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
2019-07-18 17:59:14 +02:00
|
|
|
<androidx.core.widget.NestedScrollView
|
2019-02-26 02:27:51 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-07-18 17:59:14 +02:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
2019-02-26 02:27:51 +01:00
|
|
|
|
2019-07-18 17:59:14 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/subreddit_name_relative_layout_search_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-08-22 03:45:27 +02:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2019-07-18 17:59:14 +02:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
2019-08-22 03:45:27 +02:00
|
|
|
android:padding="16dp">
|
2019-07-18 17:59:14 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/search_in_text_view_search_activity"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/search_in"
|
2020-02-27 09:58:15 +01:00
|
|
|
android:textColor="?attr/colorAccent"
|
2020-06-10 06:22:19 +02:00
|
|
|
android:textSize="?attr/font_default"
|
|
|
|
android:fontFamily="?attr/font_family" />
|
2019-07-18 17:59:14 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/subreddit_name_text_view_search_activity"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginStart="32dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_toEndOf="@id/search_in_text_view_search_activity"
|
|
|
|
android:text="@string/all_subreddits"
|
2020-02-27 09:58:15 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2020-06-10 06:22:19 +02:00
|
|
|
android:textSize="?attr/font_default"
|
|
|
|
android:fontFamily="?attr/font_family" />
|
2019-07-18 17:59:14 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
2019-02-22 06:34:24 +01:00
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|