aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/layout-land
diff options
context:
space:
mode:
authorMarco Jacob <mjacob@union06.de>2012-02-01 21:43:47 +0100
committerMarco Jacob <mjacob@union06.de>2012-02-01 21:43:47 +0100
commit9b2eecf42fd16f02f67f616f2a95ca3c358c15d2 (patch)
tree57df4e9e9b00cc1b4364da2c0ae97ec5c526c14d /main/res/layout-land
parent9e186e35d97bb53075d132f8ba55f7a580cfa1f2 (diff)
downloadcgeo-9b2eecf42fd16f02f67f616f2a95ca3c358c15d2.zip
cgeo-9b2eecf42fd16f02f67f616f2a95ca3c358c15d2.tar.gz
cgeo-9b2eecf42fd16f02f67f616f2a95ca3c358c15d2.tar.bz2
changed landscape to button side by side instead coords
Diffstat (limited to 'main/res/layout-land')
-rw-r--r--main/res/layout-land/coords.xml50
1 files changed, 25 insertions, 25 deletions
diff --git a/main/res/layout-land/coords.xml b/main/res/layout-land/coords.xml
index a8f89e8..c25a2c0 100644
--- a/main/res/layout-land/coords.xml
+++ b/main/res/layout-land/coords.xml
@@ -88,38 +88,38 @@
android:selectAllOnFocus="true" />
</TableRow>
</TableLayout>
+ <EditText
+ android:id="@+id/latitude"
+ style="@style/edittext"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:hint="@string/latitude" />
+ <EditText
+ android:id="@+id/longitude"
+ style="@style/edittext"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:hint="@string/longitude" />
<LinearLayout
android:id="@+id/linearLayout2"
- android:layout_width="match_parent"
+ android:layout_width="fill_parent"
android:layout_height="wrap_content" >
- <EditText
- android:id="@+id/latitude"
- style="@style/edittext"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:hint="@string/latitude" />
- <EditText
- android:id="@+id/longitude"
- style="@style/edittext"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:hint="@string/longitude" />
+ <Button style="@style/button"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:id="@+id/current"
+ android:layout_weight="1"
+ android:text="@string/waypoint_my_coordinates" />
+ <Button style="@style/button"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:id="@+id/cache"
+ android:layout_weight="1"
+ android:text="@string/waypoint_cache_coordinates" />
</LinearLayout>
<Button style="@style/button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
- android:id="@+id/current"
- android:text="@string/waypoint_my_coordinates" />
- <Button style="@style/button"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:id="@+id/cache"
- android:text="@string/waypoint_cache_coordinates" />
- <Button style="@style/button"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
android:id="@+id/done"
android:text="@string/waypoint_done" />
</LinearLayout>