aboutsummaryrefslogtreecommitdiffstats
path: root/main/res
diff options
context:
space:
mode:
authorrsudev <rasch@munin-soft.de>2012-03-30 23:38:39 +0200
committerrsudev <rasch@munin-soft.de>2012-03-30 23:38:39 +0200
commitef0ca671bf6be797c1863df923ab4e1de5ccdbcc (patch)
tree5aba1a1a8e960e341428a54f6b0d7876af095eea /main/res
parent5da34a1b4ae61d7fd34cd32f56a0eaa88caad4c5 (diff)
downloadcgeo-ef0ca671bf6be797c1863df923ab4e1de5ccdbcc.zip
cgeo-ef0ca671bf6be797c1863df923ab4e1de5ccdbcc.tar.gz
cgeo-ef0ca671bf6be797c1863df923ab4e1de5ccdbcc.tar.bz2
Live map info popup
Diffstat (limited to 'main/res')
-rw-r--r--main/res/layout/livemapinfo.xml56
-rw-r--r--main/res/values/strings.xml4
2 files changed, 60 insertions, 0 deletions
diff --git a/main/res/layout/livemapinfo.xml b/main/res/layout/livemapinfo.xml
new file mode 100644
index 0000000..66f9da4
--- /dev/null
+++ b/main/res/layout/livemapinfo.xml
@@ -0,0 +1,56 @@
+<?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:background="?background_color_transparent"
+ android:orientation="vertical" >
+
+ <LinearLayout style="@style/action_bar" >
+
+ <TextView style="@style/action_bar_title" />
+ </LinearLayout>
+
+ <ScrollView
+ android:id="@+id/live_map_scroll"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="vertical"
+ android:padding="4dip" >
+
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical" >
+
+ <TextView
+ android:id="@+id/live_map_text"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/live_map_notification"
+ android:textColor="?text_color"
+ android:textSize="14dip" />
+
+ <RelativeLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content" >
+
+ <CheckBox
+ android:id="@+id/live_map_hint_hide"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="left"
+ android:text="@string/live_map_note_dontshow"
+ android:visibility="gone" />
+
+ <Button
+ android:id="@+id/live_map_hint_ok"
+ style="@style/button_small"
+ android:layout_width="60dip"
+ android:layout_alignParentRight="true"
+ android:layout_marginRight="1dip"
+ android:text="@string/live_map_note_close" />
+ </RelativeLayout>
+ </LinearLayout>
+ </ScrollView>
+
+</LinearLayout> \ No newline at end of file
diff --git a/main/res/values/strings.xml b/main/res/values/strings.xml
index 727a8fa..4f95004 100644
--- a/main/res/values/strings.xml
+++ b/main/res/values/strings.xml
@@ -687,6 +687,10 @@
<string name="map_strategy_fast">Fast</string>
<string name="map_strategy_auto">Speed dependent</string>
<string name="map_strategy_detailed">Detailed</string>
+ <string name="live_map_notification">On the new live map coordinates are not always precise.\nPossibly imprecise coordinates are marked by an orange circle. Opening the cache details will always obtain precise coordinates.\nMore information on all changes can be found on the "About c:geo" page inside the app.</string>
+ <string name="live_map_note_close">Close</string>
+ <string name="live_map_note_dontshow">Do not show again</string>
+
<!-- search -->
<string name="search_bar_hint">Search for caches</string>