This library is no longer needed. You should handle keyboard input based on the window insets provided when changes occur in the environment. More details and a very well written example you can find here. https://github.com/android/user-interface-samples/tree/master/WindowInsetsAnimation
Getting keyboard height in android it's a pain in the ass. For activities where soft input mode is adjustResize
, you can set up an OnGlobalLayoutListener
and measure how the activity window is resized, to make room for the keyboard.
For other modes of soft input mode, you're out of luck. As the android brick-heads refuse to solve this problem even after 28 iterations of SDK development, someone came with a cool solution:
- create a pop-up window and observe it's global layout changes
- set it's soft input behaviour as
adjustResize
- attach this popup window to your activity and let it report the keyboard height, based on it's layout changes.
Note for existing users: The package name has been changed to a domain name I own, as part of maven requirements.
Add the following dependency to your project:
implementation 'ro.holdone:keyboardHeightProvider:1.0.3'
-
Keep a reference to
KeyboardHeightProvider
in your activity.private var keyboardHeightProvider: KeyboardHeightProvider? = null
-
Create a
KeyboardListener
private fun getKeyboardListener() = object : KeyboardHeightProvider.KeyboardListener { override fun onHeightChanged(height: Int) { sizeText.text = "$height" } }
-
Create the height provider after your activity has been created and register the listener.
override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) keyboardHeightProvider = KeyboardHeightProvider(this) keyboardHeightProvider?.addKeyboardListener(getKeyboardListener()) }
-
Override activity lifecycle and make sure you notify the
KeyboardHeightProvider
override fun onResume() { super.onResume() keyboardHeightProvider?.onResume() } override fun onPause() { super.onPause() keyboardHeightProvider?.onPause() }
Also the KeyboardInfo
object provides information about the current state of the keyboard, and it's cached height.
All credits for this project goes to Siebe Brouwer. He had a great idea of using an android PopupWindow
in order to extract the keyboard height in activities where you don't want to use the adjustResize
behaviour.