105 lines
No EOL
4.7 KiB
XML
105 lines
No EOL
4.7 KiB
XML
<?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"
|
|
android:background="?attr/colorSurface"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:id="@+id/appBarLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
android:id="@+id/toolbar"
|
|
style="@style/Toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/colorSurface"
|
|
app:navigationIcon="@drawable/ic_keyboard_backspace_black"
|
|
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/searchView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:background="@null"
|
|
android:hint="@string/action_search"
|
|
android:inputType="text|textAutoComplete"
|
|
android:paddingStart="16dp"
|
|
android:paddingEnd="16dp"
|
|
android:textAppearance="@style/TextViewSubtitle1">
|
|
|
|
<requestFocus />
|
|
</com.google.android.material.textfield.TextInputEditText>
|
|
|
|
<FrameLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/voiceSearch"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="?roundSelector"
|
|
android:padding="12dp"
|
|
app:srcCompat="@drawable/ic_mic"
|
|
app:tint="?attr/colorControlNormal"
|
|
tools:visibility="visible" />
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/clearText"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="?roundSelector"
|
|
android:padding="12dp"
|
|
android:visibility="gone"
|
|
app:srcCompat="@drawable/ic_close"
|
|
app:tint="?attr/colorControlNormal"
|
|
tools:visibility="visible" />
|
|
</FrameLayout>
|
|
</LinearLayout>
|
|
</com.google.android.material.appbar.MaterialToolbar>
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@android:id/empty"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:gravity="center"
|
|
android:text="@string/no_results"
|
|
android:textAppearance="@style/TextViewHeadline6"
|
|
android:visibility="gone"
|
|
tools:visibility="visible" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clipToPadding="false"
|
|
android:overScrollMode="never"
|
|
android:scrollbarStyle="outsideOverlay"
|
|
android:scrollbars="vertical"
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
|
|
|
|
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
|
android:id="@+id/keyboardPopup"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end|bottom"
|
|
android:layout_marginEnd="16dp"
|
|
android:layout_marginBottom="62dp"
|
|
android:text="@string/keyboard"
|
|
android:textAppearance="@style/TextViewHeadline6"
|
|
app:icon="@drawable/ic_keyboard" />
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |