Giter Club home page Giter Club logo

keybordstateutil's Introduction

KeyBordStateUtil

在Android里 你还在为监听键盘的打开还是关闭而烦恼吗? 你还在为怎么获取键盘高度而烦恼吗? 第三方键盘那么多!fuck!! out了!!,不一定out... 这里提供一种方法 #原理分析与实现 通过计算布局中的android.R.id.content的可见高度来计算.

效果图

# 使用方法
KeyBordStateUtil keyBordStateUtil=new KeyBordStateUtil(this);
keyBordStateUtil.addOnKeyBordStateListener(mOnKeyBordStateListener);
  
private KeyBordStateUtil.onKeyBordStateListener mOnKeyBordStateListener = new KeyBordStateUtil.onKeyBordStateListener() {

    @Override
    public void onSoftKeyBoardShow(int keyboardHeight) {
        textView.setText("键盘打开了-高度为:" + keyboardHeight);
    }

    @Override
    public void onSoftKeyBoardHide() {
        textView.setText("键盘关闭了");
    }
};

//释放,防止内存泄漏哦!
 @Override
    protected void onDestroy() {
        super.onDestroy();
        keyBordStateUtil.removeOnKeyBordStateListener();
    }

keybordstateutil's People

Contributors

ta893115871 avatar

Watchers

Kevin丶K avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.