服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - android 实现按钮浮动在键盘上方的实例代码

android 实现按钮浮动在键盘上方的实例代码

2022-12-01 14:39灵神翁 Android

这篇文章主要介绍了android 实现按钮浮动在键盘上方,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

大家好,我是梦辛工作室的灵,最近在帮客户修改安卓程序时,有要求到一个按钮要浮动在键盘的上方,下面大概讲一下实现方法:

其实很简单,分三步走

第一步 获取当前屏幕的高度

?
1
2
3
4
Display defaultDisplay = mcontext.getWindowManager().getDefaultDisplay();
  Point point = new Point();
  defaultDisplay.getSize(point);
  height = point.y;

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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);
 }

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

?
1
2
3
4
5
6
7
if(isKeyboardShowing){
    //键盘显示
    floatview.animate().translationY(-heightDifference).setDuration(0).start();
   }else{
    //键盘隐藏
    floatview.animate().translationY(0).start();
   }

然后我为了方便封装了一个工具类 FloatBtnUtil,很好用,下面是代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
 * 梦辛灵 实现按钮浮动工具
 */
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);
 }
 
}

下面是使用代码:

?
1
2
3
4
5
6
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 实现按钮浮动在键盘上方内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/weixin_41392105/article/details/105010624

延伸 · 阅读

精彩推荐