diff options
| -rw-r--r-- | main/res/layout-land/coords.xml | 50 |
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> |
