OsmAnd/OsmAnd/res/layout-land/dash_search_fragment.xml

64 lines
2 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/search"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2015-01-28 17:14:06 +01:00
android:background="?attr/card_bg"
android:orientation="vertical" >
2015-01-20 00:03:54 +01:00
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="@dimen/dashHeaderHeight" >
<TextView
android:id="@+id/search_for"
2015-01-30 17:25:42 +01:00
style="?attr/dashboardSubHeaderStyle"
2015-01-20 00:03:54 +01:00
android:layout_width="wrap_content"
android:text="@string/search_for" />
2015-01-20 00:03:54 +01:00
<Button
android:id="@+id/recents"
2015-01-30 17:25:42 +01:00
style="?attr/dashboardGeneralButtonStyle"
2015-01-20 00:03:54 +01:00
android:text="@string/recents" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
2015-01-30 17:25:42 +01:00
android:background="?attr/dashboard_divider" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="90dp"
android:orientation="horizontal" >
<Button
android:id="@+id/poi"
2015-02-02 10:54:36 +01:00
style="?attr/dashboardSearchButtonStyle"
2015-02-02 12:14:11 +01:00
android:drawableTop="?attr/ic_action_info2"
android:text="@string/poi" />
<View
android:layout_width="1dp"
android:layout_height="match_parent"
2015-01-30 17:25:42 +01:00
android:background="?attr/dashboard_divider" />
<Button
android:id="@+id/address"
2015-02-02 10:54:36 +01:00
style="?attr/dashboardSearchButtonStyle"
2015-02-02 12:14:11 +01:00
android:drawableTop="?attr/ic_action_home2"
android:text="@string/address" />
<View
android:layout_width="1dp"
android:layout_height="match_parent"
2015-01-30 17:25:42 +01:00
android:background="?attr/dashboard_divider" />
<Button
android:id="@+id/coord"
2015-02-02 10:54:36 +01:00
style="?attr/dashboardSearchButtonStyle"
2015-02-02 12:14:11 +01:00
android:drawableTop="?attr/ic_action_marker2"
android:text="@string/coordinates" />
</LinearLayout>
</LinearLayout>