diff options
author | Dianne Hackborn <hackbod@google.com> | 2010-11-16 18:22:49 -0800 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2010-11-16 19:35:20 -0800 |
commit | d9b3b7e8e1d8c919c3e5f5851daa80a2651ea7d1 (patch) | |
tree | 71ccb86b19a3a12d4a9b4745331e1f273a40a221 /core/java | |
parent | be26d055c9c340f9c549447bb4ee89c21fd6d714 (diff) | |
download | frameworks_base-d9b3b7e8e1d8c919c3e5f5851daa80a2651ea7d1.zip frameworks_base-d9b3b7e8e1d8c919c3e5f5851daa80a2651ea7d1.tar.gz frameworks_base-d9b3b7e8e1d8c919c3e5f5851daa80a2651ea7d1.tar.bz2 |
Fix issue #3202866: system server crash
Change-Id: Ied92164bea70f6cb8afe2c1c6ff4fc3836a209ab
Diffstat (limited to 'core/java')
-rw-r--r-- | core/java/android/app/FragmentManager.java | 2 | ||||
-rw-r--r-- | core/java/android/view/WindowManager.java | 20 |
2 files changed, 12 insertions, 10 deletions
diff --git a/core/java/android/app/FragmentManager.java b/core/java/android/app/FragmentManager.java index d3a4f33..fbad2fe 100644 --- a/core/java/android/app/FragmentManager.java +++ b/core/java/android/app/FragmentManager.java @@ -1023,7 +1023,7 @@ final class FragmentManagerImpl extends FragmentManager { throw new IllegalStateException("Recursive entry to executePendingTransactions"); } - if (Looper.myLooper() != Looper.getMainLooper()) { + if (Looper.myLooper() != mActivity.mHandler.getLooper()) { throw new IllegalStateException("Must be called from main thread of process"); } diff --git a/core/java/android/view/WindowManager.java b/core/java/android/view/WindowManager.java index f9e7d18..a64ee9d 100644 --- a/core/java/android/view/WindowManager.java +++ b/core/java/android/view/WindowManager.java @@ -628,10 +628,18 @@ public interface WindowManager extends ViewManager { * to which all subsequent touches of that pointer will go until that * pointer goes up thereby enabling touches with multiple pointers * to be split across multiple windows. - * - * {@hide} */ + */ 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. + */ + public static final int FLAG_HARDWARE_ACCELERATED = 0x01000000; + // ----- HIDDEN FLAGS. + // These start at the high bit and go down. + /** * Flag for a window belonging to an activity that responds to {@link KeyEvent#KEYCODE_MENU} * and therefore needs a Menu key. For devices where Menu is a physical button this flag is @@ -643,7 +651,7 @@ public interface WindowManager extends ViewManager { * * {@hide} */ - public static final int FLAG_NEEDS_MENU_KEY = 0x01000000; + public static final int FLAG_NEEDS_MENU_KEY = 0x08000000; /** Window flag: *sigh* The lock screen wants to continue running its * animation while it is fading. A kind-of hack to allow this. Maybe @@ -664,12 +672,6 @@ public interface WindowManager extends ViewManager { * it is created. * {@hide} */ public static final int FLAG_SYSTEM_ERROR = 0x40000000; - - /** - * Indicates whether this window should be hardware accelerated. - * Requesting hardware acceleration does not guarantee it will happen. - */ - public static final int FLAG_HARDWARE_ACCELERATED = 0x80000000; /** * Given a particular set of window manager flags, determine whether |