mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
62 lines
2.3 KiB
XML
62 lines
2.3 KiB
XML
<?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">
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginEnd="16dp"
|
|
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"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1">
|
|
|
|
<com.google.android.material.progressindicator.CircularProgressIndicator
|
|
android:id="@+id/progress"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="32dp"
|
|
android:layout_marginBottom="32dp"
|
|
android:indeterminate="true"
|
|
android:visibility="invisible"
|
|
tools:visibility="visible" />
|
|
|
|
<ListView
|
|
android:id="@+id/track_search_list"
|
|
style="@style/Theme.Widget.CardView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:choiceMode="singleChoice"
|
|
android:clipToPadding="false"
|
|
android:divider="@null"
|
|
android:dividerHeight="10dp"
|
|
android:footerDividersEnabled="true"
|
|
android:headerDividersEnabled="true"
|
|
android:listSelector="@drawable/list_item_selector"
|
|
android:scrollbars="none"
|
|
android:visibility="invisible"
|
|
tools:listitem="@layout/track_search_item"
|
|
tools:visibility="visible" />
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|