ru.ztrap.views:KeySensitive

Simple library for work with soft keyboard


Keywords
android, android-library, keyboard, keyboard-listeners, uiview
Licenses
Apache-2.0/libpng-2.0

Documentation

Key-sensitive layouts Library

Maven Central Javadocs

How to get library

gradle:

dependencies {
   compile 'ru.ztrap.views:KeySensitive:2.0.1'
}

maven:

<dependency>
  <groupId>ru.ztrap.views</groupId>
  <artifactId>KeySensitive</artifactId>
  <version>2.0.1</version>
</dependency>

Usage

xml

IMPORTANT: If you use views from-box, you must put them in root of views tree

<ru.ztrap.views.SOME_VIEW_FROM_THIS_PACKAGE
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:ks_hideWithClick="true"/>

java

SOME_VIEW view = (SOME_VIEW)findViewById(R.id.SOME_VIEW);
view.hideWithClick(true);

License

Copyright 2017 zTrap LLC

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.