diff options
author | Dianne Hackborn <hackbod@google.com> | 2009-09-15 18:45:34 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2009-09-15 18:59:31 -0700 |
commit | 9767e41d92bd6f4cf16111b3f911cef78c8b01eb (patch) | |
tree | 115b324793c1bcc89164ee249711fe9a2475eb9b /core/java/android/widget | |
parent | 5862b673d412e596f3fa419c00bd0ba16bf6c094 (diff) | |
download | frameworks_base-9767e41d92bd6f4cf16111b3f911cef78c8b01eb.zip frameworks_base-9767e41d92bd6f4cf16111b3f911cef78c8b01eb.tar.gz frameworks_base-9767e41d92bd6f4cf16111b3f911cef78c8b01eb.tar.bz2 |
Some improvements for wallpaper configuration.
This introduces a new activity that you can derive from to implement
a wall paper configuration activity. This is supposed to select
a theme based on whether it is being run to configure a real wallpaper
or a preview, but this is going to be more difficult to do than I
thought. :(
Also fix a problem in the white theme where the list view's background
was being set to white, so it wouldn't work on a transparent bg.
Change-Id: I26d5a8695a3c878a1664eb09900eded57eaff990
Diffstat (limited to 'core/java/android/widget')
-rw-r--r-- | core/java/android/widget/ZoomButtonsController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/widget/ZoomButtonsController.java b/core/java/android/widget/ZoomButtonsController.java index 760b8ff..e55fbb8 100644 --- a/core/java/android/widget/ZoomButtonsController.java +++ b/core/java/android/widget/ZoomButtonsController.java @@ -249,7 +249,7 @@ public class ZoomButtonsController implements View.OnTouchListener { lp.height = LayoutParams.WRAP_CONTENT; lp.width = LayoutParams.FILL_PARENT; lp.type = LayoutParams.TYPE_APPLICATION_PANEL; - lp.format = PixelFormat.TRANSPARENT; + lp.format = PixelFormat.TRANSLUCENT; lp.windowAnimations = com.android.internal.R.style.Animation_ZoomButtons; mContainerLayoutParams = lp; |