mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-06-28 11:49:56 +00:00
add logging when hiding window
may help with GH-1710
This commit is contained in:
parent
e062efb3d4
commit
7b0c511857
1 changed files with 8 additions and 0 deletions
|
@ -1108,6 +1108,7 @@ public class LatinIME extends InputMethodService implements
|
|||
@Override
|
||||
public void onWindowHidden() {
|
||||
super.onWindowHidden();
|
||||
Log.i(TAG, "onWindowHidden");
|
||||
final MainKeyboardView mainKeyboardView = mKeyboardSwitcher.getMainKeyboardView();
|
||||
if (mainKeyboardView != null) {
|
||||
mainKeyboardView.closing();
|
||||
|
@ -1210,6 +1211,7 @@ public class LatinIME extends InputMethodService implements
|
|||
|
||||
@Override
|
||||
public void hideWindow() {
|
||||
Log.i(TAG, "hideWindow");
|
||||
if (hasSuggestionStripView() && mSettings.getCurrent().mToolbarMode == ToolbarMode.EXPANDABLE)
|
||||
mSuggestionStripView.setToolbarVisibility(false);
|
||||
mKeyboardSwitcher.onHideWindow();
|
||||
|
@ -1222,6 +1224,12 @@ public class LatinIME extends InputMethodService implements
|
|||
super.hideWindow();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void requestHideSelf(int flags) {
|
||||
super.requestHideSelf(flags);
|
||||
Log.i(TAG, "requestHideSelf: " + flags);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDisplayCompletions(final CompletionInfo[] applicationSpecifiedCompletions) {
|
||||
if (DebugFlags.DEBUG_ENABLED) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue