mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
12 lines
379 B
Kotlin
12 lines
379 B
Kotlin
|
package com.github.libretube.util
|
||
|
|
||
|
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)
|
||
|
}
|