aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSammysHP <sven@sammyshp.de>2011-12-03 20:48:59 +0100
committerSammysHP <sven@sammyshp.de>2011-12-03 20:48:59 +0100
commitdb47d7dcb5da22492245a4e7acceef88add3478d (patch)
tree9d94e8bf9b66043ddf95374018b655d7510eda7d
parent583fa83d81682059eb8855063c95ee10606c8513 (diff)
downloadcgeo-db47d7dcb5da22492245a4e7acceef88add3478d.zip
cgeo-db47d7dcb5da22492245a4e7acceef88add3478d.tar.gz
cgeo-db47d7dcb5da22492245a4e7acceef88add3478d.tar.bz2
Add separator between waypoints
as requested in 0702fb88d5e34c5d82d54565271949d474b3652a
-rw-r--r--main/res/layout/cacheview_waypoints.xml3
-rw-r--r--main/res/layout/waypoint_item.xml6
2 files changed, 7 insertions, 2 deletions
diff --git a/main/res/layout/cacheview_waypoints.xml b/main/res/layout/cacheview_waypoints.xml
index 35e4948..9ce5b57 100644
--- a/main/res/layout/cacheview_waypoints.xml
+++ b/main/res/layout/cacheview_waypoints.xml
@@ -19,7 +19,8 @@
<Button
android:id="@+id/add_waypoint"
style="@style/button"
- android:text="@string/cache_waypoints_add" />
+ android:text="@string/cache_waypoints_add"
+ android:layout_marginTop="9dp" />
</LinearLayout>
</ScrollView> \ No newline at end of file
diff --git a/main/res/layout/waypoint_item.xml b/main/res/layout/waypoint_item.xml
index beb2065..d8ee2b4 100644
--- a/main/res/layout/waypoint_item.xml
+++ b/main/res/layout/waypoint_item.xml
@@ -3,7 +3,7 @@
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
- android:paddingBottom="18dp" >
+ android:paddingTop="9dp" >
<TextView
android:id="@+id/name"
@@ -49,4 +49,8 @@
android:textSize="14dp"
android:visibility="gone" />
+ <View
+ style="@style/separator_horizontal"
+ android:layout_marginTop="9dp" />
+
</LinearLayout> \ No newline at end of file