AndroidKeyboardWatcher icon indicating copy to clipboard operation
AndroidKeyboardWatcher copied to clipboard

Software keyboard open/close watcher for Android.

Results 8 AndroidKeyboardWatcher issues
Sort by recently updated
recently updated
newest added

This problem happen when activity attribut: android:configChanges="orientation" is used in the manifest. With this attribute set, the activity is not destroyed/recreated when we change orientation. That mean that KeyboardWatcher is...

when ths theam of activity like this "android:theme="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen",it is not work,i feel that "AndroidBug5497Workaround" will be helpful for this problem,but i failed !

Perfectly working for android lower version than 5.0 . But not on 5.0

if (initialValue == 0) { initialValue = rootViewRef.get().getHeight(); } else { if (initialValue > rootViewRef.get().getHeight()) { if (onKeyboardToggleListenerRef.get() != null) { if (!hasSentInitialAction || !isKeyboardShown) { isKeyboardShown = true; onKeyboardToggleListenerRef.get().onKeyboardShown(initialValue...

I have found issue in keyboard height calculation after device rotate. The solution is to calculate keyboard height `initialValue - rootViewRef.get().getHeight()` in `KeyboardWatcher.GlobalLayoutListener:onGlobalLayout()` after keyboard has already finished slide from...

see :https://code.google.com/p/android/issues/detail?id=5497