OsmAnd/OsmAnd/res/layout/dash_search_fragment.xml
2016-10-18 11:16:03 +03:00

30 lines
No EOL
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<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"
android:orientation="vertical">
<LinearLayout
android:id="@+id/search_card"
android:layout_width="fill_parent"
android:layout_height="56dp"
android:background="?attr/selectableItemBackground">
<TextView
android:id="@+id/search_for"
style="@style/DashboardSubHeader"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="@string/search_hint"
android:textColor="?android:attr/textColorSecondary"
android:textSize="@dimen/default_list_text_size"/>
</LinearLayout>
</LinearLayout>