LibreTube/app/src/main/java/com/github/libretube/extensions/HideKeyboard.kt
2022-08-27 15:13:24 +02:00

12 lines
385 B
Kotlin

package com.github.libretube.extensions
import android.app.Activity
import android.content.Context
import android.view.View
import android.view.inputmethod.InputMethodManager
fun Context.hideKeyboard(view: View) {
val inputMethodManager = getSystemService(Activity.INPUT_METHOD_SERVICE) as InputMethodManager
inputMethodManager.hideSoftInputFromWindow(view.windowToken, 0)
}