am e4ff4d6b
: Merge "Fix onDeatchedFromWindow to protected"
* commit 'e4ff4d6b1c14bb7ce20f8b93a90f9f80a3ea5fc3': Fix onDeatchedFromWindow to protected
This commit is contained in:
commit
d3fd8d2a6d
2 changed files with 2 additions and 2 deletions
|
@ -968,7 +968,7 @@ public class KeyboardView extends View implements PointerTracker.DrawingProxy {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void onDetachedFromWindow() {
|
||||
protected void onDetachedFromWindow() {
|
||||
super.onDetachedFromWindow();
|
||||
closing();
|
||||
if (mPreviewPlacer != null) {
|
||||
|
|
|
@ -862,7 +862,7 @@ public class SuggestionsView extends RelativeLayout implements OnClickListener,
|
|||
}
|
||||
|
||||
@Override
|
||||
public void onDetachedFromWindow() {
|
||||
protected void onDetachedFromWindow() {
|
||||
super.onDetachedFromWindow();
|
||||
mHandler.cancelAllMessages();
|
||||
hidePreview();
|
||||
|
|
Loading…
Reference in a new issue