Android如何實(shí)現(xiàn)單頁(yè)面浮層可拖動(dòng)view

這篇文章主要介紹Android如何實(shí)現(xiàn)單頁(yè)面浮層可拖動(dòng)view,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

公司主營(yíng)業(yè)務(wù):網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、移動(dòng)網(wǎng)站開(kāi)發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競(jìng)爭(zhēng)能力。創(chuàng)新互聯(lián)是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開(kāi)放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對(duì)我們的高要求,感謝他們從不同領(lǐng)域給我們帶來(lái)的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶帶來(lái)驚喜。創(chuàng)新互聯(lián)推出濮陽(yáng)免費(fèi)做網(wǎng)站回饋大家。

需求是需要在一個(gè)已經(jīng)存在的頁(yè)面添加一個(gè)可拖動(dòng)的浮層廣告。

使用到的技術(shù):ViewDragHelper

效果如圖:

Android如何實(shí)現(xiàn)單頁(yè)面浮層可拖動(dòng)view

封裝好的類(lèi)(繼承自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<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);
    //第二步:創(chuàng)建存放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);
      }

      /**
       * 當(dāng)捕獲到child后的處理:
       * 獲取child的監(jiān)聽(tīng)
       */
      @Override
      public void onViewCaptured(View capturedChild, int activePointerId) {
        super.onViewCaptured(capturedChild, activePointerId);
        if (onDragDropListener != null) {
          onDragDropListener.onDragDrop(true);
        }
      }

      /**
       * 當(dāng)釋放child后的處理:
       * 取消監(jiān)聽(tīng),不再處理
       */
      @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;
      }
    });
  }

  /**
   * 把要實(shí)現(xiàn)拖動(dòng)的子view添加進(jìn)來(lái)
   * @param view
   */
  public void addDragChildView(View view){
    viewList.add(view);
  }

  @Override
  public boolean onInterceptTouchEvent(MotionEvent ev) {
    //當(dāng)手指抬起或事件取消的時(shí)候 就不攔截事件
    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類(lèi)

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);//具體拖拽動(dòng)作使用回調(diào)即可
}
}

以上是“Android如何實(shí)現(xiàn)單頁(yè)面浮層可拖動(dòng)view”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!

網(wǎng)站題目:Android如何實(shí)現(xiàn)單頁(yè)面浮層可拖動(dòng)view
地址分享:http://www.muchs.cn/article20/gdgsjo.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站維護(hù)、網(wǎng)站設(shè)計(jì)、手機(jī)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)公司、自適應(yīng)網(wǎng)站、關(guān)鍵詞優(yōu)化

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

綿陽(yáng)服務(wù)器托管