2021-01-30 14:59:11 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-02-08 18:41:49 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:parentTag="com.google.android.material.card.MaterialCardView">
|
2021-01-30 14:59:11 +01:00
|
|
|
|
2021-10-11 17:33:48 +02:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2021-02-08 18:41:49 +01:00
|
|
|
android:id="@+id/motion_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:motionProgress="1"
|
|
|
|
tools:motionDebug="SHOW_ALL">
|
2021-01-30 14:59:11 +01:00
|
|
|
|
|
|
|
<ImageView
|
2021-02-08 18:41:49 +01:00
|
|
|
android:id="@+id/search_icon"
|
|
|
|
android:layout_width="22dp"
|
|
|
|
android:layout_height="22dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:contentDescription="@string/search"
|
2021-10-11 17:33:48 +02:00
|
|
|
app:srcCompat="@drawable/ic_search"
|
|
|
|
app:tint="?android:attr/textColorSecondary"
|
|
|
|
android:layout_marginStart="16dp"
|
2021-02-08 18:41:49 +01:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2021-10-11 17:33:48 +02:00
|
|
|
app:layout_constraintTop_toTopOf="parent"/>
|
2021-01-30 14:59:11 +01:00
|
|
|
|
|
|
|
<EditText
|
2021-02-08 18:41:49 +01:00
|
|
|
android:id="@+id/search_field"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:background="@null"
|
|
|
|
android:focusedByDefault="false"
|
|
|
|
android:hint="@string/search"
|
|
|
|
android:importantForAutofill="no"
|
|
|
|
android:inputType="text"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textSize="16sp"
|
|
|
|
app:layout_constrainedWidth="true"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0"
|
|
|
|
app:layout_constraintStart_toEndOf="@id/search_icon"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:ignore="LabelFor" />
|
2021-10-11 17:33:48 +02:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2021-01-30 14:59:11 +01:00
|
|
|
</merge>
|