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"
|
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
|
|
|
|
2018-02-17 07:04:49 -05:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/track_search"
|
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"
|
|
|
|
android:hint="@string/title"
|
2018-04-13 10:28:09 -04:00
|
|
|
android:inputType="text"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:maxLines="1" />
|
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">
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress"
|
|
|
|
style="?android:attr/progressBarStyle"
|
|
|
|
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"
|
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"
|
|
|
|
android:listSelector="?attr/selectable_list_drawable"
|
|
|
|
android:paddingTop="4dp"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:paddingBottom="4dp"
|
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
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:background="?android:attr/divider" />
|
2015-11-25 10:08:24 -05:00
|
|
|
|
2018-04-13 10:28:09 -04:00
|
|
|
</LinearLayout>
|