diff options
Diffstat (limited to 'androidApp/src/main/res/layout/units_activity.xml')
-rw-r--r-- | androidApp/src/main/res/layout/units_activity.xml | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/androidApp/src/main/res/layout/units_activity.xml b/androidApp/src/main/res/layout/units_activity.xml index 475598f..9841086 100644 --- a/androidApp/src/main/res/layout/units_activity.xml +++ b/androidApp/src/main/res/layout/units_activity.xml @@ -44,16 +44,27 @@ app:layout_constraintStart_toEndOf="@id/userButton" app:layout_constraintTop_toTopOf="@id/displayModeToggle"> - <com.google.android.material.textfield.TextInputEditText - android:id="@+id/searchInput" + <com.google.android.material.textfield.TextInputLayout android:layout_width="match_parent" android:layout_height="match_parent" - android:background="@null" - android:hint="@string/units_search" - android:imeOptions="actionSearch" - android:inputType="text" - android:lines="1" - android:paddingHorizontal="16dp" /> + app:endIconMode="clear_text" + app:boxBackgroundMode="none" + app:boxStrokeWidth="0dp" + app:hintEnabled="false"> + + <com.google.android.material.textfield.TextInputEditText + android:id="@+id/searchInput" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:background="@null" + android:hint="@string/units_search" + android:imeOptions="actionSearch" + android:inputType="text" + android:lines="1" + android:paddingTop="12dp" + android:paddingHorizontal="16dp" /> + + </com.google.android.material.textfield.TextInputLayout> </com.google.android.material.card.MaterialCardView> |