Start at the end of the IME dialog list, not one past.
Bug: 26240994 Change-Id: Ibc20474930d8c796edb3a5d4b75571a045f0a8dd
This commit is contained in:
@@ -116,7 +116,7 @@ public class WindowLayersController {
|
||||
+ " anim layer: " + childWindow.mWinAnimator.mAnimLayer);
|
||||
}
|
||||
}
|
||||
for (int i = mService.mInputMethodDialogs.size(); i >= 0; i--) {
|
||||
for (int i = mService.mInputMethodDialogs.size() - 1; i >= 0; i--) {
|
||||
final WindowState dialog = mService.mInputMethodDialogs.get(i);
|
||||
dialog.mWinAnimator.mAnimLayer = dialog.mLayer + adj;
|
||||
if (DEBUG_LAYERS) Slog.v(TAG_WM, "IM win " + imw
|
||||
|
||||
Reference in New Issue
Block a user