diff options
| author | Romain Guy <romainguy@google.com> | 2011-01-09 16:01:46 -0800 |
|---|---|---|
| committer | Romain Guy <romainguy@google.com> | 2011-01-09 16:45:28 -0800 |
| commit | 72f0a276ffd5f3d6513400e50de1a8bda547bed4 (patch) | |
| tree | 28256a39ceecb8d3e22be417d60f09a30633dd66 /core/java/android/view/WindowManager.java | |
| parent | 730f0b238a20362ff0ae6bdfbd069f0996fc1b39 (diff) | |
Better documentation for FLAG_HARDWARE_ACCELERATED
Bug #3154883
Change-Id: I2062781ba3b447b8ec4e0836b9ddeaa97c7aa60e
Diffstat (limited to 'core/java/android/view/WindowManager.java')
| -rw-r--r-- | core/java/android/view/WindowManager.java | 29 |
1 files changed, 27 insertions, 2 deletions
diff --git a/core/java/android/view/WindowManager.java b/core/java/android/view/WindowManager.java index c435c43b29d0..c54a3cf15310 100644 --- a/core/java/android/view/WindowManager.java +++ b/core/java/android/view/WindowManager.java @@ -636,8 +636,33 @@ public interface WindowManager extends ViewManager { public static final int FLAG_SPLIT_TOUCH = 0x00800000; /** - * Indicates whether this window should be hardware accelerated. - * Requesting hardware acceleration does not guarantee it will happen. + * <p>Indicates whether this window should be hardware accelerated. + * Requesting hardware acceleration does not guarantee it will happen.</p> + * + * <p>This flag can be controlled programmatically <em>only</em> to enable + * hardware acceleration. To enable hardware acceleration for a given + * window programmatically, do the following:</p> + * + * <pre> + * Window w = activity.getWindow(); // in Activity's onCreate() for instance + * w.setFlags(WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED, + * WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED); + * </pre> + * + * <p>It is important to remember that this flag <strong>must</strong> + * be set before setting the content view of your activity or dialog.</p> + * + * <p>This flag cannot be used to disable hardware acceleration after it + * was enabled in your manifest using + * {@link android.R.attr#hardwareAccelerated}. If you need to selectively + * and programmatically disable hardware acceleration (for automated testing + * for instance), make sure it is turned off in your manifest and enable it + * on your activity or dialog when you need it instead, using the method + * described above.</p> + * + * <p>This flag is automatically set by the system if the + * {@link android.R.attr#hardwareAccelerated android:hardwareAccelerated} + * XML attribute is set to true on an activity or on the application.</p> */ public static final int FLAG_HARDWARE_ACCELERATED = 0x01000000; |
