2015-11-25 10:08:24 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-21 18:43:50 -05:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-05-31 18:29:20 -04:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-02-17 07:04:49 -05:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-12-31 13:15:24 -05:00
|
|
|
android:layout_width="match_parent"
|
2018-04-13 10:28:09 -04:00
|
|
|
android:layout_height="match_parent"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:orientation="vertical">
|
2015-11-25 10:08:24 -05:00
|
|
|
|
2020-05-31 18:29:20 -04:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2015-11-25 10:08:24 -05:00
|
|
|
android:layout_width="match_parent"
|
2018-02-17 07:04:49 -05:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:layout_marginEnd="16dp"
|
2020-05-31 18:29:20 -04:00
|
|
|
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>
|
2015-11-25 10:08:24 -05:00
|
|
|
|
2018-04-13 10:28:09 -04:00
|
|
|
<FrameLayout
|
2015-11-25 10:08:24 -05:00
|
|
|
android:layout_width="match_parent"
|
2018-04-13 10:28:09 -04:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1">
|
|
|
|
|
2020-12-26 11:24:10 -05:00
|
|
|
<com.google.android.material.progressindicator.CircularProgressIndicator
|
2018-04-13 10:28:09 -04:00
|
|
|
android:id="@+id/progress"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:layout_marginTop="32dp"
|
|
|
|
android:layout_marginBottom="32dp"
|
2020-12-26 11:24:10 -05:00
|
|
|
android:indeterminate="true"
|
2018-04-13 10:28:09 -04:00
|
|
|
android:visibility="invisible"
|
2020-02-21 18:43:50 -05:00
|
|
|
tools:visibility="visible" />
|
2018-04-13 10:28:09 -04:00
|
|
|
|
|
|
|
<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"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:clipToPadding="false"
|
2018-04-13 10:28:09 -04:00
|
|
|
android:divider="@null"
|
|
|
|
android:dividerHeight="10dp"
|
|
|
|
android:footerDividersEnabled="true"
|
|
|
|
android:headerDividersEnabled="true"
|
2020-03-11 19:08:57 -04:00
|
|
|
android:listSelector="@drawable/list_item_selector"
|
2018-04-13 10:28:09 -04:00
|
|
|
android:scrollbars="none"
|
|
|
|
android:visibility="invisible"
|
|
|
|
tools:listitem="@layout/track_search_item"
|
2020-02-21 18:43:50 -05:00
|
|
|
tools:visibility="visible" />
|
2018-04-13 10:28:09 -04:00
|
|
|
|
|
|
|
</FrameLayout>
|
2018-02-17 07:04:49 -05:00
|
|
|
|
2018-04-13 10:28:09 -04:00
|
|
|
</LinearLayout>
|