summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcretin45 <cretin45@gmail.com>2016-01-13 14:20:31 -0800
committerTom Powell <zifnab@zifnab06.net>2017-03-26 16:14:44 -0700
commit6987542672e89726d512dee5186e60354f29d932 (patch)
treec22eac85f3faa6c8ab9fc6e088442fcaccdeb915
parent7990b17ce96afb8c14229389fa6f0dd67c5b1eab (diff)
downloadandroid_packages_apps_Trebuchet-6987542672e89726d512dee5186e60354f29d932.tar.gz
android_packages_apps_Trebuchet-6987542672e89726d512dee5186e60354f29d932.tar.bz2
android_packages_apps_Trebuchet-6987542672e89726d512dee5186e60354f29d932.zip
Trebuchet: Fix some monkey test race condition bugs
Issue-id: CYNGNOS-1587 Change-Id: I45ead8cfbd7fab3a9ae62f878a160a696c411e75
-rw-r--r--src/com/android/launcher3/LauncherModel.java32
-rw-r--r--src/com/android/launcher3/PagedView.java15
2 files changed, 28 insertions, 19 deletions
diff --git a/src/com/android/launcher3/LauncherModel.java b/src/com/android/launcher3/LauncherModel.java
index 7a12eb8ef..36d4877fb 100644
--- a/src/com/android/launcher3/LauncherModel.java
+++ b/src/com/android/launcher3/LauncherModel.java
@@ -654,27 +654,27 @@ public class LauncherModel extends BroadcastReceiver
modelShortcut.spanX == shortcut.spanX &&
modelShortcut.spanY == shortcut.spanY &&
((modelShortcut.dropPos == null && shortcut.dropPos == null) ||
- (modelShortcut.dropPos != null &&
- shortcut.dropPos != null &&
- modelShortcut.dropPos[0] == shortcut.dropPos[0] &&
- modelShortcut.dropPos[1] == shortcut.dropPos[1]))) {
+ (modelShortcut.dropPos != null &&
+ shortcut.dropPos != null &&
+ modelShortcut.dropPos[0] == shortcut.dropPos[0] &&
+ modelShortcut.dropPos[1] == shortcut.dropPos[1]))) {
// For all intents and purposes, this is the same object
return;
}
- }
- // the modelItem needs to match up perfectly with item if our model is
- // to be consistent with the database-- for now, just require
- // modelItem == item or the equality check above
- String msg = "item: " + ((item != null) ? item.toString() : "null") +
- "modelItem: " +
- ((modelItem != null) ? modelItem.toString() : "null") +
- "Error: ItemInfo passed to checkItemInfo doesn't match original";
- RuntimeException e = new RuntimeException(msg);
- if (stackTrace != null) {
- e.setStackTrace(stackTrace);
+ // the modelItem needs to match up perfectly with item if our model is
+ // to be consistent with the database-- for now, just require
+ // modelItem == item or the equality check above
+ String msg = "item: " + ((item != null) ? item.toString() : "null") +
+ "modelItem: " +
+ ((modelItem != null) ? modelItem.toString() : "null") +
+ "Error: ItemInfo passed to checkItemInfo doesn't match original";
+ RuntimeException e = new RuntimeException(msg);
+ if (stackTrace != null) {
+ e.setStackTrace(stackTrace);
+ }
+ throw e;
}
- throw e;
}
}
diff --git a/src/com/android/launcher3/PagedView.java b/src/com/android/launcher3/PagedView.java
index 05f0a0553..786822c49 100644
--- a/src/com/android/launcher3/PagedView.java
+++ b/src/com/android/launcher3/PagedView.java
@@ -1238,15 +1238,24 @@ public abstract class PagedView extends ViewGroup implements ViewGroup.OnHierarc
public void addFocusables(ArrayList<View> views, int direction, int focusableMode) {
// XXX-RTL: This will be fixed in a future CL
if (mCurrentPage >= 0 && mCurrentPage < getPageCount()) {
- getPageAt(mCurrentPage).addFocusables(views, direction, focusableMode);
+ View page = getPageAt(mCurrentPage);
+ if (page != null) {
+ page.addFocusables(views, direction, focusableMode);
+ }
}
if (direction == View.FOCUS_LEFT) {
if (mCurrentPage > 0) {
- getPageAt(mCurrentPage - 1).addFocusables(views, direction, focusableMode);
+ View page = getPageAt(mCurrentPage - 1);
+ if (page != null) {
+ page.addFocusables(views, direction, focusableMode);
+ }
}
} else if (direction == View.FOCUS_RIGHT){
if (mCurrentPage < getPageCount() - 1) {
- getPageAt(mCurrentPage + 1).addFocusables(views, direction, focusableMode);
+ View page = getPageAt(mCurrentPage + 1);
+ if (page != null) {
+ page.addFocusables(views, direction, focusableMode);
+ }
}
}
}