64 lines
No EOL
2.1 KiB
XML
64 lines
No EOL
2.1 KiB
XML
<?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"
|
|
android:background="@drawable/bg_cardui"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="@dimen/dashHeaderHeight" >
|
|
|
|
<TextView
|
|
android:id="@+id/search_for"
|
|
style="@style/DashboardSubHeader"
|
|
android:layout_width="wrap_content"
|
|
android:text="@string/search_for" />
|
|
|
|
<Button
|
|
android:id="@+id/recents"
|
|
style="@style/DashboardGeneralButton"
|
|
android:text="@string/recents" />
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="@color/dashboard_divider" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dashSearchBtnHeight"
|
|
android:orientation="horizontal" >
|
|
|
|
<Button
|
|
android:id="@+id/poi"
|
|
style="@style/DashboardSearchButton"
|
|
android:drawableTop="@drawable/ic_action_info2"
|
|
android:text="@string/poi" />
|
|
|
|
<View
|
|
android:layout_width="1dp"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/dashboard_divider" />
|
|
|
|
<Button
|
|
android:id="@+id/address"
|
|
style="@style/DashboardSearchButton"
|
|
android:drawableTop="@drawable/ic_action_home2"
|
|
android:text="@string/address" />
|
|
|
|
<View
|
|
android:layout_width="1dp"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/dashboard_divider" />
|
|
|
|
<Button
|
|
android:id="@+id/coord"
|
|
style="@style/DashboardSearchButton"
|
|
android:drawableTop="@drawable/ic_action_marker2"
|
|
android:text="@string/coordinates" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |