am 844fbff8: Merge "Fix NPE when requesting outsets for detached view." into mnc-dev

* commit '844fbff80c72771d21ddabf13de8fe91312c3cd6':
  Fix NPE when requesting outsets for detached view.
This commit is contained in:
Filip Gruszczynski
2015-06-03 18:27:14 +00:00
committed by Android Git Automerger

View File

@@ -7366,7 +7366,11 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
* @hide
*/
public void getOutsets(Rect outOutsetRect) {
outOutsetRect.set(mAttachInfo.mOutsets);
if (mAttachInfo != null) {
outOutsetRect.set(mAttachInfo.mOutsets);
} else {
outOutsetRect.setEmpty();
}
}
/**
@@ -14508,7 +14512,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
}
}
onDetachedFromWindow();
onDetachedFromWindows();
onDetachedFromWindowInternal();
InputMethodManager imm = InputMethodManager.peekInstance();