• android开发获取键盘高度以及判断键盘是否显示(兼容分屏模式)


    android开发获取键盘高度以及判断键盘是否显示

    //方法一(兼容分屏模式):反射获取键盘高度,,,-1表示反射失败,0表示键盘隐藏,大于0是键盘高度表示键盘显示。。。
    //关于android 9 之后非公开api调用黑名单表格hiddenapi-flags.csv链接:https://developer.android.google.cn/guide/app-compatibility/restrictions-non-sdk-interfaces
    public int getKeyboardHeight(Context context){
       try {
          InputMethodManager im = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);
          Method method = im.getClass().getDeclaredMethod("getInputMethodWindowVisibleHeight");
          method.setAccessible(true);
          Object height = method.invoke(im);
          return Integer.parseInt(height.toString());
       }catch (Throwable e){
          return -1;
       }
    }
    
    //方法二(分屏模式可能失效):添加ViewTreeObserver判断decorView的高度和contentView的高度,可以大致判断,不过这种方式在分屏模式可能失效
    View contentView = findViewById(R.id.content_view);
    contentView.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
        @Override
        public void onGlobalLayout() {
            //contentView.getRootView()即得到的是decorView
            int heightDiff = contentView.getRootView().getHeight() - contentView.getHeight();
            if (heightDiff > 0.25 * contentView.getRootView().getHeight()) { 
               // if more than 25% of the screen, its probably a keyboard is showing...
               // do something here
            }
        }
    }); 
        
    
  • 相关阅读:
    一周总结
    [z]OpenGL Wiki
    [Z]OpenCL Data Parallel Primitives Library
    [z]苹果用OpenCL实现的Parallel Prefix Sum
    指定VC中std::sort的比较函数时发生"invalid operator<"错误原因
    [z]FNV哈希算法
    [z]NViDIA用OpenCL实现的很多基础并行算法
    [z]一个基于CUDA的基础并行算法库
    [z]一个讲解很多OpenGL中基本概念的网站
    [Z]Marching Cubes的实现
  • 原文地址:https://www.cnblogs.com/yongfengnice/p/15077123.html
Copyright © 2020-2023  润新知