|
@@ -1,19 +1,28 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<LinearLayout 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:orientation="vertical">
|
|
|
|
|
|
- <EditText
|
|
|
- android:id="@+id/track_search"
|
|
|
+ <com.google.android.material.textfield.TextInputLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_marginStart="16dp"
|
|
|
android:layout_marginEnd="16dp"
|
|
|
- android:hint="@string/title"
|
|
|
- android:inputType="text"
|
|
|
- android:maxLines="1" />
|
|
|
+ app:boxBackgroundMode="filled"
|
|
|
+ app:endIconMode="clear_text"
|
|
|
+ app:hintEnabled="false">
|
|
|
+
|
|
|
+ <com.google.android.material.textfield.TextInputEditText
|
|
|
+ android:id="@+id/track_search"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:hint="@string/title"
|
|
|
+ android:inputType="text" />
|
|
|
+
|
|
|
+ </com.google.android.material.textfield.TextInputLayout>
|
|
|
|
|
|
<FrameLayout
|
|
|
android:layout_width="match_parent"
|