|
@@ -1,67 +1,60 @@
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_height="match_parent"
|
|
- android:clickable="true"
|
|
|
|
android:orientation="vertical">
|
|
android:orientation="vertical">
|
|
|
|
|
|
- <LinearLayout
|
|
|
|
- android:id="@+id/title_background"
|
|
|
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
- android:layout_height="?attr/listPreferredItemHeightSmall"
|
|
|
|
|
|
+ android:layout_height="?attr/actionBarSize"
|
|
android:background="?attr/colorPrimary"
|
|
android:background="?attr/colorPrimary"
|
|
android:elevation="2dp"
|
|
android:elevation="2dp"
|
|
- android:gravity="center_vertical"
|
|
|
|
- android:orientation="horizontal"
|
|
|
|
|
|
+ android:gravity="center"
|
|
android:paddingStart="?attr/listPreferredItemPaddingStart"
|
|
android:paddingStart="?attr/listPreferredItemPaddingStart"
|
|
android:paddingEnd="?attr/listPreferredItemPaddingEnd">
|
|
android:paddingEnd="?attr/listPreferredItemPaddingEnd">
|
|
|
|
|
|
- <TextView
|
|
|
|
- android:layout_width="0dp"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:layout_weight="1"
|
|
|
|
- android:ellipsize="end"
|
|
|
|
- android:maxLines="1"
|
|
|
|
- android:text="@string/source_search_options"
|
|
|
|
- android:textAppearance="@style/TextAppearance.AppCompat.Body2"
|
|
|
|
- android:textColor="?attr/colorOnPrimary" />
|
|
|
|
-
|
|
|
|
- </LinearLayout>
|
|
|
|
-
|
|
|
|
- <FrameLayout
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
- android:layout_height="0dp"
|
|
|
|
- android:layout_gravity="top"
|
|
|
|
- android:layout_weight="3" />
|
|
|
|
-
|
|
|
|
- <View
|
|
|
|
- android:id="@+id/divider"
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
- android:layout_height="1dp"
|
|
|
|
- android:background="?android:attr/divider" />
|
|
|
|
-
|
|
|
|
- <LinearLayout
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
- android:layout_weight="0"
|
|
|
|
- android:padding="8dp">
|
|
|
|
|
|
+ <ImageView
|
|
|
|
+ android:id="@id/pull_up_bar"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="24dp"
|
|
|
|
+ android:alpha="0.5"
|
|
|
|
+ android:scaleType="fitCenter"
|
|
|
|
+ android:src="@drawable/ic_drag_pill_24dp"
|
|
|
|
+ android:tint="?attr/colorOnBackground"
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
<Button
|
|
<Button
|
|
android:id="@+id/reset_btn"
|
|
android:id="@+id/reset_btn"
|
|
style="@style/Theme.Widget.Button"
|
|
style="@style/Theme.Widget.Button"
|
|
- android:layout_width="0dp"
|
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
- android:layout_weight="1"
|
|
|
|
- android:text="@string/action_reset" />
|
|
|
|
|
|
+ android:text="@string/action_reset"
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
<Button
|
|
<Button
|
|
android:id="@+id/search_btn"
|
|
android:id="@+id/search_btn"
|
|
style="@style/Theme.Widget.Button.FilledAccent"
|
|
style="@style/Theme.Widget.Button.FilledAccent"
|
|
- android:layout_width="0dp"
|
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_weight="1"
|
|
- android:text="@string/action_search" />
|
|
|
|
|
|
+ android:text="@string/action_search"
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
+
|
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
|
+ <FrameLayout
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="0dp"
|
|
|
|
+ android:layout_gravity="top"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:paddingTop="8dp"
|
|
|
|
+ android:paddingBottom="8dp" />
|
|
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|