良许Linux教程网 干货合集 通过android实现按钮浮动在键盘上方

通过android实现按钮浮动在键盘上方

本篇文章重点为大家讲解一下通过android实现按钮浮动在键盘上方具体方法,有需要的小伙伴可以参考一下。

image-20220212120330811

第一步

获取当前屏幕的高度

Display defaultDisplay = mcontext.getWindowManager().getDefaultDisplay();
 Point point = new Point();
 defaultDisplay.getSize(point);
 height = point.y;

第二步

获取当前屏幕可见区域的高度,用于判断当前键盘是否隐藏或显示

public void setFloatView(View root,View floatview){
 this.root = root; //根节点
 listener = new ViewTreeObserver.OnGlobalLayoutListener() {
  @Override
  public void onGlobalLayout() {
   Rect r = new Rect();
   mcontext.getWindow().getDecorView().getWindowVisibleDisplayFrame(r);
   int heightDifference = height - (r.bottom - r.top); // 实际高度减去可视图高度即是键盘高度
   boolean isKeyboardShowing = heightDifference > height / 3;
   if(isKeyboardShowing){
    //键盘显示
   }else{
    //键盘隐藏
   }
  }
 };
 root.getViewTreeObserver().addOnGlobalLayoutListener(listener);
}

第三步

当键盘隐藏时让按钮 动画移动至原有位置,当前键盘显示时让按钮动画移动至当前键盘的高度上方

if(isKeyboardShowing){
   //键盘显示
   floatview.animate().translationY(-heightDifference).setDuration(0).start();
  }else{
   //键盘隐藏
   floatview.animate().translationY(0).start();
  }

为了方便封装了一个工具类 FloatBtnUtil

public class FloatBtnUtil {

private static int height = 0;
private Activity mcontext;
private ViewTreeObserver.OnGlobalLayoutListener listener;
private View root;

public FloatBtnUtil(Activity mcontext){
 this.mcontext = mcontext;
 if (height == 0){
  Display defaultDisplay = mcontext.getWindowManager().getDefaultDisplay();
  Point point = new Point();
  defaultDisplay.getSize(point);
  height = point.y;
 }
}

public void setFloatView(View root,View floatview){
 this.root = root; //视图根节点 floatview // 需要显示在键盘上的View组件
 listener = new ViewTreeObserver.OnGlobalLayoutListener() {
  @Override
  public void onGlobalLayout() {
   Rect r = new Rect();
   mcontext.getWindow().getDecorView().getWindowVisibleDisplayFrame(r);
   int heightDifference = height - (r.bottom - r.top);
   boolean isKeyboardShowing = heightDifference > height / 3;
   if(isKeyboardShowing){
    floatview.animate().translationY(-heightDifference).setDuration(0).start();
   }else{
    floatview.animate().translationY(0).start();
   }
  }
 };
 root.getViewTreeObserver().addOnGlobalLayoutListener(listener);
}

public void clearFloatView(){
 if (listener != null && root != null)
 root.getViewTreeObserver().removeOnGlobalLayoutListener(listener);
}

}

下面是使用代码:

private void initFloatBtn() {
FloatBtnUtil floatBtnUtil = new FloatBtnUtil(this);
LinearLayout lin_bottom = (LinearLayout) this.findViewById(R.id.lin_bottom);
LinearLayout lin_root = (LinearLayout)this.findViewById(R.id.lin_root);
floatBtnUtil.setFloatView(lin_root,lin_bottom);
}

总结

到此这篇关于android 实现按钮浮动在键盘上方的文章就介绍到这了,更多相关android 实现按钮浮动在键盘上方内容

以上就是良许教程网为各位朋友分享的Linu系统相关内容。想要了解更多Linux相关知识记得关注公众号“良许Linux”,或扫描下方二维码进行关注,更多干货等着你 !

img
本文由 良许Linux教程网 发布,可自由转载、引用,但需署名作者且注明文章出处。如转载至微信公众号,请在文末添加作者公众号二维码。
良许

作者: 良许

良许,世界500强企业Linux开发工程师,公众号【良许Linux】的作者,全网拥有超30W粉丝。个人标签:创业者,CSDN学院讲师,副业达人,流量玩家,摄影爱好者。
上一篇
下一篇

发表评论

联系我们

联系我们

公众号:良许Linux

在线咨询: QQ交谈

邮箱: yychuyu@163.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部