android登录界面拖拽,Android实现单页面浮层可拖动view的示例代码

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

使用到的技术:ViewDragHelper

效果如图:

封装好的类(继承自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;

/**

* Created by hq on 2017/10/10.

*/

public class DragFrameLayout extends FrameLayout {

String TAG = "DragFrameLayout";

ViewDragHelper dragHelper;

ArrayList 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() {

/**

* 是否捕获childView:

* 如果viewList包含child,那么捕获childView

* 如果不包含child,就不捕获childView

*/

@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);

}

/**

* 当捕获到child后的处理:

* 获取child的监听

*/

@Override

public void onViewCaptured(View capturedChild, int activePointerId) {

super.onViewCaptured(capturedChild, activePointerId);

if (onDragDropListener != null) {

onDragDropListener.onDragDrop(true);

}

}

/**

* 当释放child后的处理:

* 取消监听,不再处理

*/

@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;

}

});

}

/**

* 把要实现拖动的子view添加进来

* @param view

*/

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

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">

android:id="@+id/iv1"

android:layout_width="100dp"

android:layout_height="100dp"

android:src="@mipmap/ic_launcher" />

android:id="@+id/tv1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_gravity="center"

android:text="可拖拽文字" />

MainActivity.java类

public class MainActivity extends AppCompatActivity {

DragFrameLayout m_dragFrameLayout;

ImageView m_imageView1;

TextView m_textView1;

String TAG = "";

@Override

protected 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);//具体拖拽动作使用回调即可

}

}

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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值