aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsudev <rasch@munin-soft.de>2013-02-19 23:12:44 +0100
committerrsudev <rasch@munin-soft.de>2013-02-19 23:12:44 +0100
commit1778f13166ed034a995bb472405ca5b9e13382b3 (patch)
treed3531fc4a24168f07d9d57c11108a34d5583a7ea
parent9ba47f3b40f1959e2c1e6bbd7a27410da0461831 (diff)
downloadcgeo-1778f13166ed034a995bb472405ca5b9e13382b3.zip
cgeo-1778f13166ed034a995bb472405ca5b9e13382b3.tar.gz
cgeo-1778f13166ed034a995bb472405ca5b9e13382b3.tar.bz2
Fix transparent background for popups
In the recent style related reworkings, the transparency of the background of CachePopup and WaypointPopup got lost. Fixed again.
-rw-r--r--main/AndroidManifest.xml2
-rw-r--r--main/res/layout/popup.xml3
-rw-r--r--main/res/layout/waypoint_popup.xml3
3 files changed, 6 insertions, 2 deletions
diff --git a/main/AndroidManifest.xml b/main/AndroidManifest.xml
index f764462..aa1fd3a 100644
--- a/main/AndroidManifest.xml
+++ b/main/AndroidManifest.xml
@@ -56,6 +56,7 @@
<activity
android:name=".CachePopup"
android:label="@string/app_name"
+ android:theme="@style/popup_dark"
android:windowSoftInputMode="stateHidden"
android:configChanges="keyboardHidden|orientation" >
</activity>
@@ -219,6 +220,7 @@
<activity android:name="WaypointPopup"
android:label="@string/app_name"
android:windowSoftInputMode="stateHidden"
+ android:theme="@style/popup_dark"
android:configChanges="keyboardHidden|orientation" >
</activity>
<activity android:name=".files.SimpleDirChooser"
diff --git a/main/res/layout/popup.xml b/main/res/layout/popup.xml
index 1e4c762..9e66517 100644
--- a/main/res/layout/popup.xml
+++ b/main/res/layout/popup.xml
@@ -2,7 +2,8 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
- android:orientation="vertical" >
+ android:orientation="vertical"
+ android:background="?background_color_transparent">
<LinearLayout style="@style/action_bar" >
diff --git a/main/res/layout/waypoint_popup.xml b/main/res/layout/waypoint_popup.xml
index 5feec43..3dfcd66 100644
--- a/main/res/layout/waypoint_popup.xml
+++ b/main/res/layout/waypoint_popup.xml
@@ -2,7 +2,8 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
- android:orientation="vertical">
+ android:orientation="vertical"
+ android:background="?background_color_transparent">
<LinearLayout style="@style/action_bar">
<TextView style="@style/action_bar_title" />
<View style="@style/action_bar_separator" />