Skip to content
Snippets Groups Projects
Commit 00c5c1d1 authored by Nicolas Pomepuy's avatar Nicolas Pomepuy Committed by Geoffrey Métais
Browse files

Fix audio search input text positioning

parent 0f6ce7a9
No related branches found
No related tags found
1 merge request!144Audio playlist search
......@@ -85,18 +85,24 @@
android:background="#00000000" />
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/playlist_search_text"
android:layout_marginEnd="2dp"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="4dp"
android:layout_marginEnd="8dp"
android:focusable="true"
android:visibility="gone">
android:visibility="gone"
app:layout_constraintEnd_toEndOf="@+id/header_play_pause"
app:layout_constraintStart_toEndOf="@+id/playlist_playasaudio_off"
app:layout_constraintTop_toTopOf="parent">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/search_hint"
android:inputType="textFilter"
android:imeOptions="actionSearch"/>
android:imeOptions="actionSearch"
android:inputType="textFilter" />
</com.google.android.material.textfield.TextInputLayout>
<ImageView
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment