2011-09-12 00:49:57 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@android:id/tabhost"
|
|
|
|
android:layout_width="fill_parent"
|
2012-02-12 04:18:17 +01:00
|
|
|
android:layout_height="fill_parent">
|
2011-09-12 00:49:57 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent" android:orientation="vertical">
|
2012-06-08 14:51:36 +02:00
|
|
|
<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:background="@drawable/tab_title_headline_background">
|
2011-11-16 17:21:00 +01:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/search_back_button"
|
2012-04-01 00:46:00 +02:00
|
|
|
android:contentDescription="@string/close"
|
2011-11-16 17:21:00 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="top"
|
|
|
|
android:background="@drawable/tab_back_button"
|
|
|
|
android:text="" />
|
|
|
|
|
2012-02-12 04:18:17 +01:00
|
|
|
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft = "3dp" android:text="@string/select_search_position" android:layout_gravity="center_vertical|left">
|
2011-09-12 00:49:57 +02:00
|
|
|
</TextView>
|
2011-11-16 17:21:00 +01:00
|
|
|
<Spinner
|
|
|
|
android:id="@+id/SpinnerLocation"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:background="@drawable/tab_search_panel_selector"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
2011-09-12 00:49:57 +02:00
|
|
|
<TabWidget
|
|
|
|
android:id="@android:id/tabs"
|
|
|
|
android:layout_width="fill_parent"
|
2012-06-08 14:51:36 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="0dp"/>
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:background="@drawable/ic_background_topofsearchactivities">
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textViewADesc"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:background="@drawable/ic_background_tabinfotext"
|
|
|
|
android:text="@string/poi_search_desc"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<FrameLayout
|
2011-09-12 00:49:57 +02:00
|
|
|
android:id="@android:id/tabcontent"
|
|
|
|
android:layout_width="fill_parent"
|
2012-06-08 14:51:36 +02:00
|
|
|
android:layout_height="fill_parent"/>
|
2011-09-12 00:49:57 +02:00
|
|
|
</LinearLayout>
|
|
|
|
</TabHost>
|