50 lines
2.0 KiB
XML
50 lines
2.0 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<androidx.constraintlayout.widget.ConstraintLayout 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">
|
||
|
|
||
|
|
||
|
<com.google.android.material.textfield.TextInputLayout
|
||
|
android:id="@+id/search"
|
||
|
android:layout_width="250dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center"
|
||
|
android:hint="Search"
|
||
|
app:errorEnabled="true"
|
||
|
app:layout_constraintEnd_toStartOf="@+id/searchButton"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent" >
|
||
|
|
||
|
<com.google.android.material.textfield.TextInputEditText
|
||
|
android:id="@+id/searchEditText"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:ems="10"
|
||
|
android:imeOptions="actionDone"
|
||
|
android:inputType="textUri" />
|
||
|
|
||
|
</com.google.android.material.textfield.TextInputLayout>
|
||
|
|
||
|
<ProgressBar
|
||
|
android:id="@+id/searchProgressBar"
|
||
|
style="?android:attr/progressBarStyle"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:visibility="invisible"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toBottomOf="@+id/search" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/searchButton"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="Search"
|
||
|
app:layout_constraintBottom_toBottomOf="@+id/search"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="@+id/search" />
|
||
|
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|