Simple Android library to detect Keyboard opened
/closed
status by using RxJava3.
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
dependencies {
...
compile 'com.github.Kyash:rx-keyboard-detector:LATEST_VERSION'
}
Super simple. Check example MainActivity.kt
KeyboardDetector(this).observe().subscribe({ status ->
when(status) {
KeyboardStatus.OPENED -> {}
KeyboardStatus.CLOSED -> {}
}
})
This library depends on RxJava3 and Kotlin
This library is inspired from these awesome code. Thank you so much!
- https://github.com/yshrsmz/KeyboardVisibilityEvent
- https://gist.github.com/andrewmunn/af4c15210dd376f69990eca672d2d0e7#file-keyboardmanager-kt
We are always welcome your contribution! If you find a bug or want to add new feature, please raise issue.
Copyright 2018 Kyash
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.