2015-11-25 10:08:24 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-12-31 13:15:24 -05:00
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2015-11-25 10:08:24 -05:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2015-12-31 13:15:24 -05:00
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:gravity="center"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:orientation="horizontal"
|
2015-12-31 13:15:24 -05:00
|
|
|
android:paddingLeft="@dimen/margin_left"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:paddingRight="@dimen/margin_right">
|
2015-11-25 10:08:24 -05:00
|
|
|
|
|
|
|
<EditText
|
2016-12-18 16:56:28 -05:00
|
|
|
android:id="@+id/track_search"
|
2015-11-25 10:08:24 -05:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2016-12-18 16:56:28 -05:00
|
|
|
android:hint="@string/title"/>
|
2015-11-25 10:08:24 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2015-12-31 13:15:24 -05:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress"
|
|
|
|
style="?android:attr/progressBarStyle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_gravity="center_vertical|center_horizontal"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:paddingBottom="32dp"
|
|
|
|
android:paddingTop="32dp"
|
2015-12-31 13:15:24 -05:00
|
|
|
android:visibility="gone"/>
|
|
|
|
|
2015-11-25 10:08:24 -05:00
|
|
|
<ListView
|
2016-12-18 16:56:28 -05:00
|
|
|
android:id="@+id/track_search_list"
|
2015-11-25 10:08:24 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:choiceMode="singleChoice"
|
|
|
|
android:clipToPadding="false"
|
2015-12-31 13:15:24 -05:00
|
|
|
android:divider="@null"
|
|
|
|
android:dividerHeight="0dp"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:listSelector="?attr/selectable_list_drawable"
|
|
|
|
android:scrollbarStyle="outsideOverlay"
|
2015-12-31 13:15:24 -05:00
|
|
|
android:visibility="gone"/>
|
2015-11-25 10:08:24 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|