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

溫馨提示×

溫馨提示×

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

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

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

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

這篇文章將為大家詳細講解有關如何使用Android實現單頁面浮層可拖動view,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

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

關于“如何使用Android實現單頁面浮層可拖動view”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

清苑县| 习水县| 鹿泉市| 江山市| 乡宁县| 攀枝花市| 镇巴县| 黄龙县| 辛集市| 景德镇市| 石嘴山市| 伊金霍洛旗| 固原市| 鹿泉市| 彰化市| 大厂| 体育| 南涧| 抚宁县| 班玛县| 洞口县| 凤阳县| 义马市| 永城市| 乌兰察布市| 静乐县| 荔浦县| 通化县| 巴塘县| 正定县| 将乐县| 延庆县| 泰顺县| 焦作市| 称多县| 定南县| 通海县| 玉溪市| 泽库县| 尼勒克县| 襄城县|