aboutsummaryrefslogtreecommitdiffstats
path: root/main/res
diff options
context:
space:
mode:
authorBananeweizen <bananeweizen@gmx.de>2014-06-11 21:51:37 +0200
committerBananeweizen <bananeweizen@gmx.de>2014-06-11 21:51:37 +0200
commit5b016321473536e607a7f2b906435ee9c74ff5bb (patch)
tree5b1cd84be1c93cd7c5a0404647a64976b07b0c8c /main/res
parent210e8778ce82fb56e0fd683d04f69b6b7ee8a6ef (diff)
downloadcgeo-5b016321473536e607a7f2b906435ee9c74ff5bb.zip
cgeo-5b016321473536e607a7f2b906435ee9c74ff5bb.tar.gz
cgeo-5b016321473536e607a7f2b906435ee9c74ff5bb.tar.bz2
fix #3955: use recommended scrollbar styles
Diffstat (limited to 'main/res')
-rw-r--r--main/res/layout/addresslist_activity.xml2
-rw-r--r--main/res/layout/cachedetail_inventory_page.xml4
-rw-r--r--main/res/layout/cachedetail_waypoints_page.xml6
-rw-r--r--main/res/layout/cacheslist_activity.xml6
-rw-r--r--main/res/layout/gpx.xml6
-rw-r--r--main/res/layout/logs_page.xml2
-rw-r--r--main/res/layout/navigateanypoint_activity.xml4
-rw-r--r--main/res/layout/simple_dir_chooser.xml2
-rw-r--r--main/res/layout/usefulapps_activity.xml2
9 files changed, 26 insertions, 8 deletions
diff --git a/main/res/layout/addresslist_activity.xml b/main/res/layout/addresslist_activity.xml
index 6bcbf79..4fbe53c 100644
--- a/main/res/layout/addresslist_activity.xml
+++ b/main/res/layout/addresslist_activity.xml
@@ -12,8 +12,10 @@
android:layout_margin="0dip"
android:background="?background_color"
android:cacheColorHint="?background_color"
+ android:clipToPadding="false"
android:dividerHeight="1dip"
android:padding="0dip"
+ android:scrollbarStyle="outsideOverlay"
tools:listitem="@layout/addresslist_item" />
</LinearLayout> \ No newline at end of file
diff --git a/main/res/layout/cachedetail_inventory_page.xml b/main/res/layout/cachedetail_inventory_page.xml
index 9acbba4..a15cedd 100644
--- a/main/res/layout/cachedetail_inventory_page.xml
+++ b/main/res/layout/cachedetail_inventory_page.xml
@@ -2,6 +2,8 @@
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
- android:cacheColorHint="?background_color" >
+ android:cacheColorHint="?background_color"
+ android:clipToPadding="false"
+ android:scrollbarStyle="outsideOverlay" >
</ListView> \ No newline at end of file
diff --git a/main/res/layout/cachedetail_waypoints_page.xml b/main/res/layout/cachedetail_waypoints_page.xml
index a3e43df..8111210 100644
--- a/main/res/layout/cachedetail_waypoints_page.xml
+++ b/main/res/layout/cachedetail_waypoints_page.xml
@@ -3,12 +3,14 @@
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:cacheColorHint="?background_color"
+ android:clickable="true"
+ android:clipToPadding="false"
android:divider="?background_color"
android:fastScrollEnabled="true"
android:focusable="false"
android:footerDividersEnabled="false"
android:headerDividersEnabled="false"
- android:clickable="true"
- android:listSelector="?background_color" >
+ android:listSelector="?background_color"
+ android:scrollbarStyle="outsideOverlay" >
</ListView> \ No newline at end of file
diff --git a/main/res/layout/cacheslist_activity.xml b/main/res/layout/cacheslist_activity.xml
index a12adad..561baa2 100644
--- a/main/res/layout/cacheslist_activity.xml
+++ b/main/res/layout/cacheslist_activity.xml
@@ -28,9 +28,11 @@
android:layout_margin="0dip"
android:background="?background_color"
android:cacheColorHint="?background_color"
+ android:clipToPadding="false"
android:dividerHeight="1dip"
+ android:fastScrollEnabled="true"
android:padding="0dip"
- android:visibility="gone"
- android:fastScrollEnabled="true" />
+ android:scrollbarStyle="outsideOverlay"
+ android:visibility="gone" />
</LinearLayout> \ No newline at end of file
diff --git a/main/res/layout/gpx.xml b/main/res/layout/gpx.xml
index 368f3ae..4367f82 100644
--- a/main/res/layout/gpx.xml
+++ b/main/res/layout/gpx.xml
@@ -7,7 +7,7 @@
<Button
android:id="@+id/select_dir"
style="@style/button_full"
- android:visibility="gone"/>
+ android:visibility="gone" />
<ListView
android:id="@android:id/list"
@@ -16,7 +16,9 @@
android:layout_margin="0dip"
android:background="?background_color"
android:cacheColorHint="?background_color"
+ android:clipToPadding="false"
android:dividerHeight="1dip"
- android:padding="0dip" />
+ android:padding="0dip"
+ android:scrollbarStyle="outsideOverlay" />
</LinearLayout> \ No newline at end of file
diff --git a/main/res/layout/logs_page.xml b/main/res/layout/logs_page.xml
index f0a5d31..11f7855 100644
--- a/main/res/layout/logs_page.xml
+++ b/main/res/layout/logs_page.xml
@@ -4,12 +4,14 @@
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:cacheColorHint="?background_color"
+ android:clipToPadding="false"
android:divider="?background_color"
android:fastScrollEnabled="true"
android:focusable="false"
android:footerDividersEnabled="false"
android:headerDividersEnabled="false"
android:listSelector="?background_color"
+ android:scrollbarStyle="outsideOverlay"
tools:listitem="@layout/logs_item" >
</ListView> \ No newline at end of file
diff --git a/main/res/layout/navigateanypoint_activity.xml b/main/res/layout/navigateanypoint_activity.xml
index 22a29af..3305d56 100644
--- a/main/res/layout/navigateanypoint_activity.xml
+++ b/main/res/layout/navigateanypoint_activity.xml
@@ -10,8 +10,10 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:cacheColorHint="?background_color"
+ android:clipToPadding="false"
android:footerDividersEnabled="false"
- android:headerDividersEnabled="false" >
+ android:headerDividersEnabled="false"
+ android:scrollbarStyle="outsideOverlay" >
</ListView>
</LinearLayout> \ No newline at end of file
diff --git a/main/res/layout/simple_dir_chooser.xml b/main/res/layout/simple_dir_chooser.xml
index 1bf9a2d..167b2ec 100644
--- a/main/res/layout/simple_dir_chooser.xml
+++ b/main/res/layout/simple_dir_chooser.xml
@@ -65,6 +65,8 @@
android:layout_height="wrap_content"
android:layout_above="@id/buttonLayout"
android:layout_below="@+id/headerLayout"
+ android:clipToPadding="false"
+ android:scrollbarStyle="outsideOverlay"
tools:listitem="@layout/simple_dir_item" />
</RelativeLayout> \ No newline at end of file
diff --git a/main/res/layout/usefulapps_activity.xml b/main/res/layout/usefulapps_activity.xml
index e15cd7a..7abb212 100644
--- a/main/res/layout/usefulapps_activity.xml
+++ b/main/res/layout/usefulapps_activity.xml
@@ -11,12 +11,14 @@
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:cacheColorHint="?background_color"
+ android:clipToPadding="false"
android:divider="?background_color"
android:fastScrollEnabled="true"
android:footerDividersEnabled="false"
android:headerDividersEnabled="false"
android:listSelector="?background_color"
android:padding="4dip"
+ android:scrollbarStyle="outsideOverlay"
tools:listitem="@layout/usefulapps_item" >
</ListView>