OsmAnd/OsmAnd/res/layout/dash_search_fragment.xml
Victor Shcherb 78836e14a6 Update bg
2015-05-03 23:42:50 +02:00

75 lines
No EOL
2.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:osmand="http://schemas.android.com/apk/res-auto"
android:id="@+id/search"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/bg_card"
android:layout_marginTop="@dimen/dash_margin"
android:layout_marginBottom="@dimen/dash_margin"
android:layout_marginLeft="@dimen/dash_margin_h"
android:layout_marginRight="@dimen/dash_margin_h"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="@dimen/list_header_height" >
<TextView
android:id="@+id/search_for"
style="@style/DashboardSubHeader"
android:layout_width="wrap_content"
android:text="@string/search_for" />
<net.osmand.plus.widgets.ButtonEx
android:id="@+id/recents"
android:layout_width="wrap_content"
style="@style/DashboardGeneralButton"
android:text="@string/shared_string_history"
osmand:textAllCapsCompat="true"
osmand:typeface="@string/font_roboto_medium" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="?attr/dashboard_divider" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="@dimen/dashSearchBtnHeight"
android:orientation="horizontal" >
<net.osmand.plus.widgets.ButtonEx
android:id="@+id/poi"
style="@style/DashboardSearchButton"
android:text="@string/poi"
osmand:textAllCapsCompat="false"
osmand:typeface="@string/font_roboto_medium" />
<View
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="?attr/dashboard_divider" />
<net.osmand.plus.widgets.ButtonEx
android:id="@+id/address"
style="@style/DashboardSearchButton"
android:text="@string/address"
osmand:textAllCapsCompat="false"
osmand:typeface="@string/font_roboto_medium" />
<View
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="?attr/dashboard_divider" />
<net.osmand.plus.widgets.ButtonEx
android:id="@+id/coord"
style="@style/DashboardSearchButton"
android:text="@string/coordinates"
osmand:textAllCapsCompat="false"
osmand:typeface="@string/font_roboto_medium" />
</LinearLayout>
</LinearLayout>