• Stars
    star
    116
  • Rank 303,894 (Top 6 %)
  • Language
    Kotlin
  • License
    Apache License 2.0
  • Created over 6 years ago
  • Updated over 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Light-weight Android library that helps detecting keyboard opened/closed status by using RxJava2 & Kotlin

Rx Keyboard Detector

Build Status JitPack

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

demo.gif

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 JitPack

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.