文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android如何实现单页面浮层可拖动view

2023-05-30 20:02

关注

这篇文章主要介绍Android如何实现单页面浮层可拖动view,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

需求是需要在一个已经存在的页面添加一个可拖动的浮层广告。

使用到的技术:ViewDragHelper

效果如图:

Android如何实现单页面浮层可拖动view

封装好的类(继承自FrameLayout)

import android.content.Context;import android.support.annotation.AttrRes;import android.support.annotation.NonNull;import android.support.annotation.Nullable;import android.support.v4.widget.ViewDragHelper;import android.util.AttributeSet;import android.view.MotionEvent;import android.view.View;import android.widget.FrameLayout;import java.util.ArrayList;public class DragFrameLayout extends FrameLayout {  String TAG = "DragFrameLayout";  ViewDragHelper dragHelper;  ArrayList<View> viewList;  public DragFrameLayout(@NonNull Context context) {    this(context, null);  }  public DragFrameLayout(@NonNull Context context, @Nullable AttributeSet attrs) {    this(context, attrs, 0);  }  public DragFrameLayout(@NonNull Context context, @Nullable AttributeSet attrs, @AttrRes int defStyleAttr) {    super(context, attrs, defStyleAttr);    //第二步:创建存放View的集合    viewList = new ArrayList<>();    dragHelper = ViewDragHelper.create(this, 1.0f, new ViewDragHelper.Callback() {            @Override      public boolean tryCaptureView(View child, int pointerId) {        return viewList.contains(child);      }      @Override      public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) {        super.onViewPositionChanged(changedView, left, top, dx, dy);      }            @Override      public void onViewCaptured(View capturedChild, int activePointerId) {        super.onViewCaptured(capturedChild, activePointerId);        if (onDragDropListener != null) {          onDragDropListener.onDragDrop(true);        }      }            @Override      public void onViewReleased(View releasedChild, float xvel, float yvel) {        super.onViewReleased(releasedChild, xvel, yvel);        if (onDragDropListener != null) {          onDragDropListener.onDragDrop(false);        }      }            @Override      public int clampViewPositionHorizontal(View child, int left, int dx) {        return left;      }            @Override      public int clampViewPositionVertical(View child, int top, int dy) {        return top;      }    });  }    public void addDragChildView(View view){    viewList.add(view);  }  @Override  public boolean onInterceptTouchEvent(MotionEvent ev) {    //当手指抬起或事件取消的时候 就不拦截事件    int actionMasked = ev.getActionMasked();    if (actionMasked == MotionEvent.ACTION_CANCEL || actionMasked == MotionEvent.ACTION_UP) {      return false;    }    return dragHelper.shouldInterceptTouchEvent(ev);  }  @Override  public boolean onTouchEvent(MotionEvent event) {    dragHelper.processTouchEvent(event);    return true;  }  public interface OnDragDropListener {    void onDragDrop(boolean captured);  }  private OnDragDropListener onDragDropListener;  public void setOnDragDropListener(OnDragDropListener onDragDropListener) {    this.onDragDropListener = onDragDropListener;  }}

使用方法:

activity_main.xml

<?xml version="1.0" encoding="utf-8"?><com.windfindtech.hqdemo.view.DragFrameLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:app="http://schemas.android.com/apk/res-auto"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:id="@+id/df_content"tools:context="com.windfindtech.hqdemo.MainActivity"><ImageView  android:id="@+id/iv1"  android:layout_width="100dp"  android:layout_height="100dp"  android:src="@mipmap/ic_launcher" /><TextView  android:id="@+id/tv1"  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:layout_gravity="center"  android:text="可拖拽文字" /></com.windfindtech.hqdemo.view.DragFrameLayout>

MainActivity.java类

public class MainActivity extends AppCompatActivity {DragFrameLayout m_dragFrameLayout;ImageView m_imageView1;TextView m_textView1;String TAG = "";@Overrideprotected void onCreate(Bundle savedInstanceState) {  super.onCreate(savedInstanceState);  setContentView(R.layout.activity_main);  m_dragFrameLayout = (DragFrameLayout) findViewById(R.id.df_content);  m_imageView1 = (ImageView)findViewById(R.id.iv1);  m_textView1 = (TextView) findViewById(R.id.tv1);//   m_dragFrameLayout.addDragChildView(m_imageView1);  m_dragFrameLayout.addDragChildView(m_textView1);//具体拖拽动作使用回调即可}}

以上是“Android如何实现单页面浮层可拖动view”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯