OsmAnd/OsmAnd/res/layout/search_address_online.xml

44 lines
1.5 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2011-11-29 16:34:23 +01:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
2015-03-06 19:37:54 +01:00
android:background="?attr/expandable_list_item_background"
android:orientation="vertical">
2011-11-29 16:34:23 +01:00
<LinearLayout
android:id="@+id/LinearLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
2015-02-02 18:01:14 +01:00
android:paddingLeft="@dimen/list_content_padding"
android:paddingRight="@dimen/list_content_padding"
android:layout_marginTop="5dp">
2013-05-09 19:24:30 +02:00
<ProgressBar
android:id="@+id/ProgressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2015-02-02 17:02:21 +01:00
android:visibility="invisible"/>
2011-11-29 16:34:23 +01:00
<EditText
android:id="@+id/SearchText"
android:layout_width="0dp"
2011-11-29 16:34:23 +01:00
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="@string/hint_search_online"
2015-02-02 17:02:21 +01:00
android:text=""/>
2011-11-29 16:34:23 +01:00
<Button
android:id="@+id/SearchButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minWidth="80dp"
2015-02-02 17:02:21 +01:00
android:text="@string/search_button"/>
2011-11-29 16:34:23 +01:00
</LinearLayout>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="0dp"
2015-03-06 21:16:08 +01:00
android:layout_weight="1"/>
2011-11-29 16:34:23 +01:00
</LinearLayout>