2014-11-24 16:16:08 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-10-18 10:16:03 +02:00
|
|
|
<LinearLayout android:id="@+id/search"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="@dimen/dash_margin"
|
|
|
|
android:layout_marginLeft="@dimen/dash_margin_h"
|
|
|
|
android:layout_marginRight="@dimen/dash_margin_h"
|
|
|
|
android:layout_marginTop="@dimen/dash_margin"
|
|
|
|
android:background="?attr/bg_card"
|
2020-02-24 15:17:23 +01:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_marginEnd="@dimen/dash_margin_h"
|
|
|
|
android:layout_marginStart="@dimen/dash_margin_h">
|
2014-11-27 21:59:44 +01:00
|
|
|
|
2015-01-19 23:30:23 +01:00
|
|
|
<LinearLayout
|
2016-10-18 10:16:03 +02:00
|
|
|
android:id="@+id/search_card"
|
2015-01-19 23:30:23 +01:00
|
|
|
android:layout_width="fill_parent"
|
2020-02-24 15:17:23 +01:00
|
|
|
android:layout_height="@dimen/wpt_list_item_height"
|
2016-10-18 10:16:03 +02:00
|
|
|
android:background="?attr/selectableItemBackground">
|
2015-01-19 23:30:23 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/search_for"
|
2015-04-17 00:37:39 +02:00
|
|
|
style="@style/DashboardSubHeader"
|
2015-01-19 23:30:23 +01:00
|
|
|
android:layout_width="wrap_content"
|
2014-11-27 21:59:44 +01:00
|
|
|
android:layout_height="match_parent"
|
2016-10-18 10:16:03 +02:00
|
|
|
android:text="@string/search_hint"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="@dimen/default_list_text_size"/>
|
2014-11-27 21:59:44 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2014-11-24 16:16:08 +01:00
|
|
|
</LinearLayout>
|