Fix onDeatchedFromWindow to protected
Change-Id: Ief666554ffd405a43363e66ea2bc2d87aa76a882
This commit is contained in:
parent
17fbdbc261
commit
73cd4c1428
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