WindowInsets Handling & Keyboard Animations

Jul 20 2021 Kotlin 1.5.10, Android 11, Android Studio 4.1.3 and Android Studio Arctic Fox Canary 12

Part 1: Keyboard Handling in Android

5. Animate the Keyboard

Episode complete

Play next episode

Next
About this episode
Leave a rating/review
See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 4. Adjust the System Windows Next episode: 6. Animate Surrounding Views

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Pro subscription. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

This video Animate the Keyboard was last updated on Jul 20 2021

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

Now that everything is ready, it’s time to animate the keyboard!

@RequiresApi(Build.VERSION_CODES.R)
fun animateKeyboardDisplay() {
  val cb = object : WindowInsetsAnimation.Callback(DISPATCH_MODE_STOP) {
    override fun onProgress(insets: WindowInsets, animations: MutableList<WindowInsetsAnimation>): WindowInsets {
      
      posBottom = insets.getInsets(WindowInsetsCompat.Type.ime()).bottom

      val navBar = view.rootWindowInsets?.getInsets(WindowInsetsCompat.Type.navigationBars())!!

      if (posBottom < navBar.bottom) {
        posBottom = navBar.bottom
      }

      container.updateLayoutParams<ViewGroup.MarginLayoutParams> {
        updateMargins(
          top = posTop,
          bottom = posBottom)
      }
 
      return insets
    }
  }
 
  container.setWindowInsetsAnimationCallback(cb)
}