欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android实现微信朋友圈评论EditText效果

程序员文章站 2023-11-08 22:38:16
本文主要讲解实现微信朋友圈评论edittext效果思路,供大家参考,具体内容如下 效果图 当我们点击某一天朋友圈的评论是,列表也会跟随着滑动,使得键盘刚好在我们...

本文主要讲解实现微信朋友圈评论edittext效果思路,供大家参考,具体内容如下

效果图

Android实现微信朋友圈评论EditText效果

当我们点击某一天朋友圈的评论是,列表也会跟随着滑动,使得键盘刚好在我们点击的那条评论上方

getwindow().getdecorview().getviewtreeobserver().addongloballayoutlistener(new viewtreeobserver.ongloballayoutlistener() {
  @override
  public void ongloballayout() {
  // 这里可以监听到键盘显示与隐藏时界面可视区域的变化
  rect rect = new rect();
  view decorview = getwindow().getdecorview();
  decorview.getwindowvisibledisplayframe(rect);
  int displayheight = rect.bottom - rect.top;
  // 拿到键盘的高度,可能会有误差,需要优化
  keyboardheight = decorview.getheight() - displayheight;
  if (displayheight * 1.0 / decorview.getheight() > 0.8) {
   dialog.dismiss();
  }
  }
 });

考虑到评论的edittext是可以隐藏的,所以把它写到dialog中,初始化dialog的代码就不贴出来了

点击弹出dialog

private void showinputcomment(view commentview, final int position) {
   // 拿到评论按钮在屏幕中的坐标
   final int rvinputy = gety(commentview);
   // 拿到评论按钮高度
   final int rvinputheight = commentview.getheight();
   dialog.show();

   handler.postdelayed(new runnable() {
    @override
    public void run() {
     int dialogy = gety(dialog.findviewbyid(r.id.dialog_layout_comment));
     // 滑动列表
     rv.smoothscrollby(0, rvinputy - keyboardheight + dialogy + rvinputheight);
    }
   }, 300);
  }

  /**
   * 拿到view在屏幕中的坐标
   * @param commentview
   * @return
   */
  private int gety(view commentview) {
   int[] outlocation = new int[2];
   commentview.getlocationonscreen(outlocation);
   return outlocation[1];
  }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。