aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/layout/reset_cache_coords_dialog.xml
diff options
context:
space:
mode:
Diffstat (limited to 'main/res/layout/reset_cache_coords_dialog.xml')
-rw-r--r--main/res/layout/reset_cache_coords_dialog.xml29
1 files changed, 17 insertions, 12 deletions
diff --git a/main/res/layout/reset_cache_coords_dialog.xml b/main/res/layout/reset_cache_coords_dialog.xml
index 2773041..67ffda3 100644
--- a/main/res/layout/reset_cache_coords_dialog.xml
+++ b/main/res/layout/reset_cache_coords_dialog.xml
@@ -2,28 +2,33 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
+ android:background="?background_color"
android:orientation="vertical"
android:padding="3dip" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textColor="?text_color"
android:text="@string/waypoint_reset_cache_coords_info" />
- <CheckBox
- android:id="@+id/local"
+ <RadioGroup
+ android:id="@+id/modify_cache_coordinates_group"
android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:checked="true"
- android:text="@string/waypoint_localy_reset_cache_coords" />
+ android:layout_height="wrap_content" >
- <CheckBox
- android:id="@+id/upload"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:checked="false"
- android:visibility="gone"
- android:text="@string/waypoint_reset_cache_coords_on_website" />
+ <RadioButton
+ android:id="@+id/reset_cache_coordinates_local"
+ style="@style/radiobutton_wrap"
+ android:checked="true"
+ android:text="@string/waypoint_localy_reset_cache_coords" />
+
+ <RadioButton
+ android:id="@+id/reset_cache_coordinates_local_and_remote"
+ style="@style/radiobutton_wrap"
+ android:text="@string/waypoint_reset_local_and_remote_cache_coords"
+ android:visibility="gone" />
+ </RadioGroup>
<Button
android:id="@+id/reset"