LibreTube/app/src/main/java/com/github/libretube/extensions/HideKeyboard.kt

12 lines
385 B
Kotlin
Raw Normal View History

2022-08-27 18:43:24 +05:30
package com.github.libretube.extensions
2022-07-24 01:40:03 +05:30
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)
}