diff options
| -rw-r--r-- | main/res/layout/fieldnote_export_dialog.xml | 12 | ||||
| -rw-r--r-- | main/res/layout/gpx_export_dialog.xml | 9 | ||||
| -rw-r--r-- | main/res/layout/reset_cache_coords_dialog.xml | 8 |
3 files changed, 13 insertions, 16 deletions
diff --git a/main/res/layout/fieldnote_export_dialog.xml b/main/res/layout/fieldnote_export_dialog.xml index a83fc67..ca0b01d 100644 --- a/main/res/layout/fieldnote_export_dialog.xml +++ b/main/res/layout/fieldnote_export_dialog.xml @@ -2,32 +2,30 @@ <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/export_fieldnotes_info" />
<CheckBox
android:id="@+id/upload"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
+ style="@style/checkbox_full"
android:text="@string/export_fieldnotes_upload" />
<CheckBox
android:id="@+id/onlynew"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
+ style="@style/checkbox_full"
android:enabled="false"
android:text="@string/export_fieldnotes_onlynew" />
<Button
android:id="@+id/export"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_margin="3dip"
+ style="@style/button_full"
android:text="@string/export" />
</LinearLayout>
\ No newline at end of file diff --git a/main/res/layout/gpx_export_dialog.xml b/main/res/layout/gpx_export_dialog.xml index 7c9345f..a997d6b 100644 --- a/main/res/layout/gpx_export_dialog.xml +++ b/main/res/layout/gpx_export_dialog.xml @@ -2,6 +2,7 @@ <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" >
@@ -9,19 +10,17 @@ android:id="@id/info"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:textColor="?text_color"
android:text="@string/export_gpx_info" />
<CheckBox
android:id="@+id/share"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
+ style="@style/checkbox_full"
android:text="@string/init_share_after_export" />
<Button
android:id="@+id/export"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_margin="3dip"
+ style="@style/button_full"
android:text="@string/export" />
</LinearLayout>
\ No newline at end of file diff --git a/main/res/layout/reset_cache_coords_dialog.xml b/main/res/layout/reset_cache_coords_dialog.xml index fba87ca..67ffda3 100644 --- a/main/res/layout/reset_cache_coords_dialog.xml +++ b/main/res/layout/reset_cache_coords_dialog.xml @@ -2,12 +2,14 @@ <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
@@ -17,15 +19,13 @@ <RadioButton
android:id="@+id/reset_cache_coordinates_local"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
+ 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"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
+ style="@style/radiobutton_wrap"
android:text="@string/waypoint_reset_local_and_remote_cache_coords"
android:visibility="gone" />
</RadioGroup>
|
