aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/layout/livemapinfo.xml
blob: 1b1e9ea7f2a06e588764f5e16f1e301f961d9cc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    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="14sp" />

        <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" />
    </LinearLayout>

</ScrollView>