aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/layout/reset_cache_coords_dialog.xml
blob: 67ffda352f395b3d00d743b5de0f1343fb53b62c (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
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<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" />

    <RadioGroup
        android:id="@+id/modify_cache_coordinates_group"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

        <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"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_margin="3dip"
        android:text="@string/waypoint_reset" />

</LinearLayout>