1<?xml version="1.0" encoding="utf-8"?> 2<merge xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 xmlns:tools="http://schemas.android.com/tools" 5 tools:parentTag="android.widget.FrameLayout"> 6 7 <LinearLayout 8 android:layout_width="match_parent" 9 android:layout_height="wrap_content" 10 android:layout_marginLeft="24dp" 11 android:layout_marginRight="24dp" 12 android:orientation="horizontal"> 13 14 <EditText 15 android:id="@+id/searchEditText" 16 android:layout_width="0dp" 17 android:layout_height="wrap_content" 18 android:layout_weight="1" 19 android:backgroundTint="@color/divider" 20 android:hint="@string/search" 21 android:inputType="text" 22 android:imeOptions="actionSearch" 23 android:textColorHint="@color/text_color_placeholder"/> 24 25 <ImageButton 26 android:id="@+id/searchButton" 27 android:layout_width="24dp" 28 android:layout_height="24dp" 29 android:layout_gravity="center_vertical" 30 android:background="?attr/selectableItemBackgroundBorderless" 31 app:srcCompat="@drawable/ic_search"/> 32 </LinearLayout> 33 34</merge>