91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android如何實現單頁面浮層可拖動view

發布時間:2021-04-16 12:26:52 來源:億速云 閱讀:411 作者:小新 欄目:移動開發

這篇文章主要介紹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;

/**
 * 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);
    //第二步:創建存放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

<?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 = "";

@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);//具體拖拽動作使用回調即可
}
}

以上是“Android如何實現單頁面浮層可拖動view”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

集安市| 广西| 息烽县| 罗山县| 奉节县| 衡东县| 青河县| 胶南市| 汤阴县| 灌云县| 辉南县| 和政县| 南部县| 蚌埠市| 磴口县| 克拉玛依市| 奈曼旗| 正镶白旗| 屏东市| 扎兰屯市| 青海省| 西乌珠穆沁旗| 云安县| 青铜峡市| 鄂托克前旗| 昭平县| 腾冲县| 临城县| 阳曲县| 沂南县| 凤凰县| 眉山市| 竹溪县| 临湘市| 德保县| 南宁市| 云龙县| 盘锦市| 尼勒克县| 沿河| 大化|