2010-05-31 16:39:04 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical">
2010-05-31 20:48:18 +02:00
2010-05-31 16:39:04 +02:00
<TextView android:text= "Select city or street or building" android:id= "@+id/TextView" android:layout_width= "fill_parent" android:layout_height= "wrap_content" android:gravity= "center_horizontal"
android:layout_marginTop = "5dp">
</TextView>
2010-05-31 20:48:18 +02:00
<ScrollView android:layout_width= "fill_parent" android:layout_height= "wrap_content" >
2010-05-31 16:39:04 +02:00
<TableLayout android:id= "@+id/TableLayout" android:stretchColumns= "1" android:layout_width= "fill_parent" android:layout_height= "wrap_content" >
<TableRow android:id= "@+id/TableRow" android:layout_marginLeft = "5dp" >
<TextView android:text= "Region" android:id= "@+id/TextView" >
</TextView>
<Button android:id= "@+id/CountryButton" android:text= "@string/ChooseCountry" >
</Button>
2010-05-31 20:48:18 +02:00
<ImageButton android:id= "@+id/ResetCountry" android:background= "@drawable/icon" android:layout_marginRight = "5dp" >
2010-05-31 16:39:04 +02:00
</ImageButton>
</TableRow>
2010-05-31 20:48:18 +02:00
<TableRow android:id= "@+id/TableRow" android:layout_marginLeft = "5dp" >
2010-05-31 16:39:04 +02:00
<TextView android:text= "City" android:id= "@+id/TextView" >
</TextView>
<Button android:id= "@+id/CityButton" android:text= "@string/choose_city" >
</Button>
2010-05-31 20:48:18 +02:00
<ImageButton android:id= "@+id/ResetCity" android:background= "@drawable/icon" android:layout_marginRight = "5dp" >
2010-05-31 16:39:04 +02:00
</ImageButton>
</TableRow>
<TableRow android:id= "@+id/TableRow" android:layout_marginLeft = "5dp" >
<TextView android:text= "Street" android:id= "@+id/TextView" >
</TextView>
<Button android:id= "@+id/StreetButton" android:text= "@string/choose_street" >
</Button>
2010-05-31 20:48:18 +02:00
<ImageButton android:id= "@+id/ResetStreet" android:background= "@drawable/icon" android:layout_marginRight = "5dp" >
2010-05-31 16:39:04 +02:00
</ImageButton>
</TableRow>
<TableRow android:id= "@+id/TableRow" android:layout_marginLeft = "5dp" >
<TextView android:text= "Bulding" android:id= "@+id/TextView" >
</TextView>
<Button android:id= "@+id/BuildingButton" android:text= "@string/choose_building" >
</Button>
2010-05-31 20:48:18 +02:00
<ImageButton android:id= "@+id/ResetBuilding" android:background= "@drawable/icon" android:layout_marginRight = "5dp" >
2010-05-31 16:39:04 +02:00
</ImageButton>
</TableRow>
</TableLayout>
2010-05-31 20:48:18 +02:00
</ScrollView>
2010-05-31 16:39:04 +02:00
<LinearLayout android:id= "@+id/LinearLayout" android:layout_width= "fill_parent" android:layout_height= "fill_parent" android:orientation= "vertical"
android:gravity="right|bottom">
<Button android:text= "Show on map" android:layout_width= "wrap_content" android:layout_height= "wrap_content" android:id= "@+id/ShowOnMap" >
</Button>
</LinearLayout>
2010-05-31 20:48:18 +02:00
2010-05-31 16:39:04 +02:00
</LinearLayout>