|
@@ -1,36 +1,66 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<LinearLayout
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
- android:orientation="vertical"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
- android:clickable="true">
|
|
|
+ android:clickable="true"
|
|
|
+ android:orientation="vertical">
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/title_background"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="?attr/listPreferredItemHeightSmall"
|
|
|
+ android:background="?colorPrimary"
|
|
|
+ android:elevation="2dp"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:paddingLeft="?attr/listPreferredItemPaddingLeft"
|
|
|
+ android:paddingRight="?attr/listPreferredItemPaddingRight"
|
|
|
+ >
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/title"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:ellipsize="end"
|
|
|
+ android:maxLines="1"
|
|
|
+ tools:text="Title"
|
|
|
+ android:textAppearance="@style/TextAppearance.AppCompat.Body2"
|
|
|
+ android:textColor="@color/textColorPrimaryDark"/>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
+ <FrameLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:layout_weight="3"
|
|
|
+ android:layout_gravity="top"/>
|
|
|
+ <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">
|
|
|
|
|
|
<Button
|
|
|
- style="@style/Theme.Widget.Button.Colored"
|
|
|
- android:id="@+id/search_btn"
|
|
|
+ android:id="@+id/reset_btn"
|
|
|
+ style="@style/Theme.Widget.Button.Borderless"
|
|
|
android:layout_width="0dp"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_weight="1"
|
|
|
- android:text="@string/action_search"/>
|
|
|
+ android:text="@string/action_reset"/>
|
|
|
|
|
|
<Button
|
|
|
- style="@style/Theme.Widget.Button.Borderless"
|
|
|
- android:id="@+id/reset_btn"
|
|
|
+ android:id="@+id/search_btn"
|
|
|
+ style="@style/Theme.Widget.Button.Colored"
|
|
|
android:layout_width="0dp"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_weight="1"
|
|
|
- android:text="@string/action_reset"/>
|
|
|
-
|
|
|
+ android:text="@string/action_search"/>
|
|
|
</LinearLayout>
|
|
|
-
|
|
|
- <FrameLayout
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent" />
|
|
|
-
|
|
|
</LinearLayout>
|