am e2e48eb9: Merge "Add StatsUtilManager.onStartInput & onFinishInput"
* commit 'e2e48eb9b341f4a0f62443cf031009b895c881e4': Add StatsUtilManager.onStartInput & onFinishInputmain
commit
602de33b97
|
@ -38,6 +38,12 @@ public class StatsUtilsManager {
|
|||
public void onLoadSettings(final SettingsValues settingsValues) {
|
||||
}
|
||||
|
||||
public void onStartInputView() {
|
||||
}
|
||||
|
||||
public void onFinishInputView() {
|
||||
}
|
||||
|
||||
public void onDestroy() {
|
||||
}
|
||||
}
|
||||
|
|
|
@ -793,12 +793,14 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
|||
@Override
|
||||
public void onStartInputView(final EditorInfo editorInfo, final boolean restarting) {
|
||||
mHandler.onStartInputView(editorInfo, restarting);
|
||||
mStatsUtilsManager.onStartInputView();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onFinishInputView(final boolean finishingInput) {
|
||||
StatsUtils.onFinishInputView();
|
||||
mHandler.onFinishInputView(finishingInput);
|
||||
mStatsUtilsManager.onFinishInputView();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue