首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Android实现单页面浮层可拖动view的一种方法

Android实现单页面浮层可拖动view的一种方法

作者头像
砸漏
发布2020-10-26 16:35:57
7570
发布2020-10-26 16:35:57
举报
文章被收录于专栏:恩蓝脚本恩蓝脚本恩蓝脚本

上一篇讲到通过通过goolge官方的ViewDragHelper工具实现拖动的方法(上一篇见https://www.zalou.cn/article/125481.htm),那么有一个问题就是在DragframeLayout中的onTouchEvent一直接收不到触摸消息,而且在onInterceptTouchEvent的时候,并没有触发ViewDragHelper.tryCaptureView方法,因此诞生了另一种比较原始的方法:通过自定义可拖动view来实现

主要方法:

initEdge:设置可拖动view能拖动范围的初始边界,一般情况下为父布局的边界。注意view.getLeft…等会获取到会0,我是在网路数据返回的情况下设置边界,并显示的。也有方法开一个子线程获取。

onTouchEvent:拖动的计算以及重新layout

代码:

import android.content.Context;
import android.support.annotation.Nullable;
import android.support.v7.widget.AppCompatImageView;
import android.util.AttributeSet;
import android.view.MotionEvent;

/**
 * Created by hq on 2017/10/10.
 * 参考:http://blog.csdn.net/zane_xiao/article/details/51188867
 */

public class DragImageView extends AppCompatImageView {
  String TAG = "DragImageView";

  public DragImageView(Context context) {
    this(context, null);
  }

  public DragImageView(Context context, @Nullable AttributeSet attrs) {
    this(context, attrs, 0);
  }

  public DragImageView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
  }

  /**
   * 设置在父布局中的边界
   * @param l
   * @param t
   * @param r
   * @param b
   */
  public void initEdge(int l,int t,int r,int b) {
    edgeLeft = l;
    edgeTop = t;
    edgeRight = r;
    edgeBottom = b;
  }

  int edgeLeft, edgeTop, edgeRight, edgeBottom;
  int lastX, lastY, movex, movey, dx, dy;

  @Override
  public boolean onTouchEvent(MotionEvent event) {
    switch (event.getAction()) {
      case MotionEvent.ACTION_DOWN:
        lastX = (int) event.getRawX();
        lastY = (int) event.getRawY();
        movex = lastX;
        movey = lastY;
        break;
      case MotionEvent.ACTION_MOVE:
        dx = (int) event.getRawX() - lastX;
        dy = (int) event.getRawY() - lastY;

        int left = getLeft() + dx;
        int top = getTop() + dy;
        int right = getRight() + dx;
        int bottom = getBottom() + dy;
        if (left < edgeLeft) {
          left = edgeLeft;
          right = left + getWidth();
        }
        if (right   edgeRight) {
          right = edgeRight;
          left = right - getWidth();
        }
        if (top < edgeTop) {
          top = edgeTop;
          bottom = top + getHeight();
        }
        if (bottom   edgeBottom) {

          bottom = edgeBottom;
          top = bottom - getHeight();
        }

        layout(left, top, right, bottom);
        lastX = (int) event.getRawX();
        lastY = (int) event.getRawY();
        break;
      case MotionEvent.ACTION_UP:
        //避免滑出触发点击事件
        if ((int) (event.getRawX() - movex) != 0
          || (int) (event.getRawY() - movey) != 0) {
          return true;
        }
        break;
      default:
        break;
    }
    return super.onTouchEvent(event);
  }
}

布局:

<?xml version="1.0" encoding="utf-8"? 
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/df_content"
android:layout_width="match_parent"
android:layout_height="match_parent" 

<com.windfindtech.ishanghai.view.SwipeScrollView
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="@color/default_white"
  android:scrollbars="none" 

  <RelativeLayout
    android:id="@+id/network_tab_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/default_white" 

    ...........

  </RelativeLayout 
</com.windfindtech.ishanghai.view.SwipeScrollView 

<com.windfindtech.ishanghai.view.DragImageView
  android:id="@+id/iv_drag_adver"
  android:layout_width="40dp"
  android:layout_height="40dp"
  android:layout_gravity="right|top"
  android:src="@drawable/ic_launcher" / 
</FrameLayout 

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

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2020-09-11 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档