aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/layout/livemapinfo.xml
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/layout/livemapinfo.xml
parent5da34a1b4ae61d7fd34cd32f56a0eaa88caad4c5 (diff)
downloadcgeo-ef0ca671bf6be797c1863df923ab4e1de5ccdbcc.zip
cgeo-ef0ca671bf6be797c1863df923ab4e1de5ccdbcc.tar.gz
cgeo-ef0ca671bf6be797c1863df923ab4e1de5ccdbcc.tar.bz2
Live map info popup
Diffstat (limited to 'main/res/layout/livemapinfo.xml')
-rw-r--r--main/res/layout/livemapinfo.xml56
1 files changed, 56 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