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 2: Keyboard Handling in Jetpack Compose

07. Read the Keyboard Visibility

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: 06. Animate Surrounding Views Next episode: 08. Adjust the System Windows

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

Take your career further with a Kodeco Personal Plan. 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.

Notes: 07. Read the Keyboard Visibility

Prerequisites: This second part of the course, assumes you’re familiar with Jetpack Compose.

If you’re new or want to know more, read and/or watch:

Jetpack Compose requires that you use the Canary build of Android Studio. You can download it from:

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

In the past episodes, you’ve seen how to read the keyboard properties and animate it as well as the surrounding views. Now you’ll see the same functionalities but in Jetpack Compose. Compose is the new Android toolkit for building native UI. You no longer use XML and findViewById calls to access a view.

val keyboardVisible = LocalWindowInsets.current.ime.isVisible
val active = remember { mutableStateOf(keyboardVisible) }
val focusRequester = FocusRequester()
.focusRequester(focusRequester)
DisposableEffect(Unit) {
  focusRequester.requestFocus()
  onDispose { }
}
val keyboardController = LocalSoftwareKeyboardController.current
keyboardController?.hide()