diff options
| author | campbeb <bpcampbell@gmail.com> | 2013-05-17 00:45:17 -0700 |
|---|---|---|
| committer | campbeb <bpcampbell@gmail.com> | 2013-05-17 00:45:17 -0700 |
| commit | eb360a18a1b9a2e560b00d4584cf79f52040acec (patch) | |
| tree | db527407e9d022861e55602dfb773d3a9ebb2799 | |
| parent | 76a7404e536047dd74721ac9c89fd10a8a2dd16d (diff) | |
| parent | b9aa6735dcd8460af199b937ab58d51a7b59f931 (diff) | |
| download | cgeo-eb360a18a1b9a2e560b00d4584cf79f52040acec.zip cgeo-eb360a18a1b9a2e560b00d4584cf79f52040acec.tar.gz cgeo-eb360a18a1b9a2e560b00d4584cf79f52040acec.tar.bz2 | |
Merge pull request #2739 from campbeb/fix_overdraw
Fix Overdraw
25 files changed, 1 insertions, 29 deletions
diff --git a/main/res/drawable/inventory_background_dark.xml b/main/res/drawable/inventory_background_dark.xml index fce3151..e7c24b9 100644 --- a/main/res/drawable/inventory_background_dark.xml +++ b/main/res/drawable/inventory_background_dark.xml @@ -4,8 +4,6 @@ <stroke android:color="#99FFFFFF" android:width="2px" /> - <solid - android:color="#AA000000" /> <corners android:topLeftRadius="5dip" /> </shape>
\ No newline at end of file diff --git a/main/res/drawable/inventory_background_light.xml b/main/res/drawable/inventory_background_light.xml index 71486c7..5f0e36b 100644 --- a/main/res/drawable/inventory_background_light.xml +++ b/main/res/drawable/inventory_background_light.xml @@ -4,8 +4,6 @@ <stroke android:color="#99000000" android:width="2px" /> - <solid - android:color="#AAFFFFFF" /> <corners android:topLeftRadius="5dip" /> </shape>
\ No newline at end of file diff --git a/main/res/layout-land/navigate.xml b/main/res/layout-land/navigate.xml index 5965128..9cf0def 100644 --- a/main/res/layout-land/navigate.xml +++ b/main/res/layout-land/navigate.xml @@ -2,7 +2,6 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" - android:background="?background_color" android:orientation="vertical" > <include layout="@layout/actionbar" /> diff --git a/main/res/layout/about_activity.xml b/main/res/layout/about_activity.xml index 3f4ca00..891f989 100644 --- a/main/res/layout/about_activity.xml +++ b/main/res/layout/about_activity.xml @@ -2,7 +2,6 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" - android:background="?background_color" android:orientation="vertical" > <include layout="@layout/actionbar"/> diff --git a/main/res/layout/addresses.xml b/main/res/layout/addresses.xml index 08f5bc1..9bd06db 100644 --- a/main/res/layout/addresses.xml +++ b/main/res/layout/addresses.xml @@ -11,7 +11,6 @@ android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_margin="0dip" - android:background="?background_color" android:cacheColorHint="?background_color" android:dividerHeight="1dip" android:padding="0dip" /> diff --git a/main/res/layout/addresses_item.xml b/main/res/layout/addresses_item.xml index 3ea27ff..5d4b1ce 100644 --- a/main/res/layout/addresses_item.xml +++ b/main/res/layout/addresses_item.xml @@ -4,7 +4,6 @@ android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margin="3dip" - android:background="?background_color" android:orientation="vertical" android:paddingBottom="7dip" android:paddingLeft="5dip" diff --git a/main/res/layout/caches.xml b/main/res/layout/caches.xml index 5c3abbc..4ae9227 100644 --- a/main/res/layout/caches.xml +++ b/main/res/layout/caches.xml @@ -35,7 +35,6 @@ android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_margin="0dip" - android:background="?background_color" android:cacheColorHint="?background_color" android:dividerHeight="1dip" android:padding="0dip" diff --git a/main/res/layout/caches_item.xml b/main/res/layout/caches_item.xml index d4e7b27..6f06a85 100644 --- a/main/res/layout/caches_item.xml +++ b/main/res/layout/caches_item.xml @@ -3,8 +3,7 @@ xmlns:cc="http://schemas.android.com/apk/res/cgeo.geocaching" android:id="@+id/one_cache" android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:background="?background_color" > + android:layout_height="wrap_content" > <!-- selection mode checkbox --> @@ -166,7 +165,6 @@ android:layout_centerHorizontal="true" android:layout_gravity="center" android:layout_marginTop="22dip" - android:background="?favorite" android:ellipsize="marquee" android:gravity="center" android:lines="1" diff --git a/main/res/layout/cacheview.xml b/main/res/layout/cacheview.xml index 44765dc..7a227ba 100644 --- a/main/res/layout/cacheview.xml +++ b/main/res/layout/cacheview.xml @@ -3,7 +3,6 @@ xmlns:app="http://schemas.android.com/apk/res/cgeo.geocaching"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
- android:background="?background_color"
android:orientation="vertical" >
<LinearLayout style="@style/action_bar" >
diff --git a/main/res/layout/edit_waypoint_activity.xml b/main/res/layout/edit_waypoint_activity.xml index 657e9f4..eaef36c 100644 --- a/main/res/layout/edit_waypoint_activity.xml +++ b/main/res/layout/edit_waypoint_activity.xml @@ -2,7 +2,6 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" - android:background="?background_color" android:orientation="vertical" > <include layout="@layout/actionbar" /> diff --git a/main/res/layout/gpx.xml b/main/res/layout/gpx.xml index 08f5bc1..9bd06db 100644 --- a/main/res/layout/gpx.xml +++ b/main/res/layout/gpx.xml @@ -11,7 +11,6 @@ android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_margin="0dip" - android:background="?background_color" android:cacheColorHint="?background_color" android:dividerHeight="1dip" android:padding="0dip" /> diff --git a/main/res/layout/gpx_item.xml b/main/res/layout/gpx_item.xml index df735bc..c024b9a 100644 --- a/main/res/layout/gpx_item.xml +++ b/main/res/layout/gpx_item.xml @@ -4,7 +4,6 @@ android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margin="3dip" - android:background="?background_color" android:orientation="vertical" android:paddingBottom="7dip" android:paddingLeft="5dip" diff --git a/main/res/layout/init.xml b/main/res/layout/init.xml index ab38fb6..65d007e 100644 --- a/main/res/layout/init.xml +++ b/main/res/layout/init.xml @@ -2,7 +2,6 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" - android:background="?background_color" android:orientation="vertical" > <include layout="@layout/actionbar" /> diff --git a/main/res/layout/mapfile_item.xml b/main/res/layout/mapfile_item.xml index c30315a..30bb8d9 100644 --- a/main/res/layout/mapfile_item.xml +++ b/main/res/layout/mapfile_item.xml @@ -4,7 +4,6 @@ android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margin="3dip" - android:background="?background_color" android:orientation="vertical" android:paddingBottom="7dip" android:paddingLeft="5dip" diff --git a/main/res/layout/navigate.xml b/main/res/layout/navigate.xml index ae51735..f791d8d 100644 --- a/main/res/layout/navigate.xml +++ b/main/res/layout/navigate.xml @@ -2,7 +2,6 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" - android:background="?background_color" android:orientation="vertical" > <RelativeLayout diff --git a/main/res/layout/point.xml b/main/res/layout/point.xml index baa568c..0f0d266 100644 --- a/main/res/layout/point.xml +++ b/main/res/layout/point.xml @@ -2,7 +2,6 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" - android:background="?background_color" android:orientation="vertical" > <include layout="@layout/actionbar" /> diff --git a/main/res/layout/search.xml b/main/res/layout/search.xml index a0a699d..426e214 100644 --- a/main/res/layout/search.xml +++ b/main/res/layout/search.xml @@ -3,7 +3,6 @@ xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="fill_parent" - android:background="?background_color" android:orientation="vertical" > <include layout="@layout/actionbar" /> diff --git a/main/res/layout/simple_dir_chooser.xml b/main/res/layout/simple_dir_chooser.xml index 7c9d95a..d7d2322 100644 --- a/main/res/layout/simple_dir_chooser.xml +++ b/main/res/layout/simple_dir_chooser.xml @@ -2,7 +2,6 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" - android:background="?background_color" android:orientation="vertical" > <LinearLayout diff --git a/main/res/layout/simple_dir_item.xml b/main/res/layout/simple_dir_item.xml index e268943..57d6ae6 100644 --- a/main/res/layout/simple_dir_item.xml +++ b/main/res/layout/simple_dir_item.xml @@ -2,7 +2,6 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" - android:background="?background_color" android:orientation="horizontal" > <CheckBox diff --git a/main/res/layout/spoilers.xml b/main/res/layout/spoilers.xml index 2027b7a..5a1463e 100644 --- a/main/res/layout/spoilers.xml +++ b/main/res/layout/spoilers.xml @@ -2,7 +2,6 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" - android:background="?background_color" android:orientation="vertical" > <include layout="@layout/actionbar"/> diff --git a/main/res/layout/touch.xml b/main/res/layout/touch.xml index 61778ce..4425d95 100644 --- a/main/res/layout/touch.xml +++ b/main/res/layout/touch.xml @@ -2,7 +2,6 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" - android:background="?background_color" android:orientation="vertical" > <LinearLayout style="@style/action_bar" > diff --git a/main/res/layout/trackable_activity.xml b/main/res/layout/trackable_activity.xml index bcfb42d..df579b2 100644 --- a/main/res/layout/trackable_activity.xml +++ b/main/res/layout/trackable_activity.xml @@ -3,7 +3,6 @@ xmlns:app="http://schemas.android.com/apk/res/cgeo.geocaching"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
- android:background="?background_color"
android:orientation="vertical" >
<include layout="@layout/actionbar" />
diff --git a/main/res/layout/useful_apps_activity.xml b/main/res/layout/useful_apps_activity.xml index 84bcf39..0f8e1eb 100644 --- a/main/res/layout/useful_apps_activity.xml +++ b/main/res/layout/useful_apps_activity.xml @@ -2,7 +2,6 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" - android:background="?background_color" android:orientation="vertical" > <include layout="@layout/actionbar" /> diff --git a/main/res/layout/visit.xml b/main/res/layout/visit.xml index 7ffd630..2863429 100644 --- a/main/res/layout/visit.xml +++ b/main/res/layout/visit.xml @@ -2,7 +2,6 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" - android:background="?background_color" android:orientation="vertical" > <LinearLayout style="@style/action_bar" > diff --git a/main/res/layout/visit_image.xml b/main/res/layout/visit_image.xml index fd8eaea..d2d1152 100644 --- a/main/res/layout/visit_image.xml +++ b/main/res/layout/visit_image.xml @@ -2,7 +2,6 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" - android:background="?background_color" android:orientation="vertical" > <LinearLayout style="@style/action_bar" > |
