charlieysx / Keyboard

soft keyboard listening

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Keyboard

Listening to the soft keyboard open or close

gif

gif gif

Gradle

  • add jitpack to your project's build.gradle:
    allprojects {
        repositories {
            ...
            maven { url 'https://jitpack.io' }
        }
    }
  • add the compile statement to your module's build.gradle:
dependencies {
    compile 'com.github.smileysx:Keyboard:1.0.0'
}

Usage

  • constructor method
public CBKeyboard(Activity activity);
public CBKeyboard(Fragment fragment);
public CBKeyboard(android.app.Fragment fragment);
new CBKeyboard(this)
    .setOnNavListener(new OnNavListener() {
        @Override
        public void onNavOpen(int height) {
            // "nav open : " + height;
        }

        @Override
        public void onNavClose() {
            //"nav close";
        }
    })
    .setOnKeyboardListener(new OnKeyboardListener() {
        @Override
        public void onKeyboardOpen(int height) {
            // "keyboard open : " + height;
        }

        @Override
        public void onKeyboardClose() {
            // "keyboard close";
        }
    })
    .listener();

License

Copyright 2017 CodeBear

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.

About

soft keyboard listening


Languages

Language:Java 100.0%