tachiyomi/app/src/main/res/layout/track_search_dialog.xml

47 lines
1.6 KiB
XML
Raw Normal View History

2015-11-25 16:08:24 +01:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
2016-03-12 14:22:40 +01:00
android:layout_height="wrap_content"
android:orientation="vertical">
2015-11-25 16:08:24 +01:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:gravity="center"
2016-03-12 14:22:40 +01:00
android:orientation="horizontal"
android:paddingLeft="@dimen/margin_left"
2016-03-12 14:22:40 +01:00
android:paddingRight="@dimen/margin_right">
2015-11-25 16:08:24 +01:00
<EditText
android:id="@+id/track_search"
2015-11-25 16:08:24 +01:00
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="@string/title"/>
2015-11-25 16:08:24 +01:00
</LinearLayout>
<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 14:22:40 +01:00
android:paddingBottom="32dp"
android:paddingTop="32dp"
android:visibility="gone"/>
2015-11-25 16:08:24 +01:00
<ListView
android:id="@+id/track_search_list"
2015-11-25 16:08:24 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2016-03-12 14:22:40 +01:00
android:choiceMode="singleChoice"
android:clipToPadding="false"
android:divider="@null"
android:dividerHeight="0dp"
2016-03-12 14:22:40 +01:00
android:listSelector="?attr/selectable_list_drawable"
android:scrollbarStyle="outsideOverlay"
android:visibility="gone"/>
2015-11-25 16:08:24 +01:00
</LinearLayout>