rx-keyboard-detector

Additional

Language
Kotlin
Version
0.2.0 (Aug 6, 2021)
Created
Apr 5, 2018
Updated
Aug 6, 2021 (Retired)
Owner
Kyash
Contributors
Yusuke Konishi (konifar)
Keita Kagurazaka (k-kagurazaka)
irgaly
3
Activity
Badge
Generate
Download
Source code

Rx Keyboard Detector

Simple Android library to detect Keyboard opened/closed status by using RxJava3.

Download

Project build.gradle

allprojects {
    repositories {
        ...
        maven { url "https://jitpack.io" }
    }
}

App build.gradle

dependencies {
    ...
    compile 'com.github.Kyash:rx-keyboard-detector:LATEST_VERSION'
}

LATEST_VERSION is

Usage

Super simple. Check example MainActivity.kt

KeyboardDetector(this).observe().subscribe({ status ->
  when(status) {
    KeyboardStatus.OPENED -> {}
    KeyboardStatus.CLOSED -> {}
  }
})

Dependencies

This library depends on RxJava3 and Kotlin

Thanks

This library is inspired from these awesome code. Thank you so much!

Contributing

We are always welcome your contribution! If you find a bug or want to add new feature, please raise issue.

License

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.