51 lines
No EOL
3.2 KiB
XML
51 lines
No EOL
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:custom="http://schemas.android.com/apk/res/net.osmand.plus"
|
|
android:layout_width="fill_parent" android:layout_height="fill_parent">
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content" android:orientation="vertical" android:gravity="center_horizontal">
|
|
|
|
|
|
<net.osmand.view.ExpandableLinearLayout custom:maxVisibleWidth="800dp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" >
|
|
|
|
<TableLayout android:id="@+id/TableLayout" android:layout_width="fill_parent" android:stretchColumns="1" android:layout_height="wrap_content" >
|
|
<TableRow android:id="@+id/TableRow" android:layout_marginLeft = "5dp">
|
|
<TextView android:id="@+id/TextView" android:text="@string/search_address_region">
|
|
</TextView>
|
|
<Button android:id="@+id/CountryButton" android:text="@string/ChooseCountry" />
|
|
<ImageButton android:id="@+id/ResetCountry" android:layout_marginRight = "5dp" android:background="@drawable/reset" android:contentDescription="@string/default_buttons_reset">
|
|
</ImageButton>
|
|
</TableRow>
|
|
<TableRow android:id="@+id/TableRow" android:layout_marginLeft = "5dp" >
|
|
<TextView android:id="@+id/TextView" android:text="@string/search_address_city">
|
|
</TextView>
|
|
<Button android:id="@+id/CityButton" android:text="@string/choose_city" />
|
|
<ImageButton android:id="@+id/ResetCity" android:layout_marginRight = "5dp" android:background="@drawable/reset" android:contentDescription="@string/default_buttons_reset">
|
|
</ImageButton>
|
|
</TableRow>
|
|
<TableRow android:id="@+id/TableRow" android:layout_marginLeft = "5dp">
|
|
<TextView android:id="@+id/TextView" android:text="@string/search_address_street">
|
|
</TextView>
|
|
<Button android:id="@+id/StreetButton" android:text="@string/choose_street" />
|
|
<ImageButton android:id="@+id/ResetStreet" android:layout_marginRight = "5dp" android:background="@drawable/reset" android:contentDescription="@string/default_buttons_reset">
|
|
</ImageButton>
|
|
</TableRow>
|
|
<TableRow android:id="@+id/TableRow" android:layout_marginLeft = "5dp">
|
|
<TextView android:id="@+id/BuildingText" android:text="@string/search_address_building">
|
|
</TextView>
|
|
<Button android:id="@+id/BuildingButton" android:text="@string/choose_building" />
|
|
<ImageButton android:id="@+id/ResetBuilding" android:layout_marginRight = "5dp" android:background="@drawable/reset" android:contentDescription="@string/default_buttons_reset">
|
|
</ImageButton>
|
|
</TableRow>
|
|
</TableLayout>
|
|
|
|
<RadioGroup android:orientation="horizontal" android:layout_span="3" android:id="@+id/RadioGroup" android:layout_marginLeft="5dp" android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<RadioButton android:id="@+id/RadioBuilding" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/search_address_building_option"></RadioButton>
|
|
<RadioButton android:id="@+id/RadioIntersStreet" android:layout_width="wrap_content" android:layout_marginLeft = "5dp" android:layout_height="wrap_content" android:text="@string/search_address_street_option"></RadioButton>
|
|
</RadioGroup>
|
|
|
|
|
|
</net.osmand.view.ExpandableLinearLayout >
|
|
</LinearLayout>
|
|
</ScrollView> |