最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android實(shí)現(xiàn)單頁(yè)面浮層可拖動(dòng)view的示例代碼

 更新時(shí)間:2017年10月11日 10:22:24   作者:賴床的貓  
本篇文章主要介紹了Android實(shí)現(xiàn)單頁(yè)面浮層可拖動(dòng)view的示例代碼,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

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

使用到的技術(shù):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<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)聽
       */
      @Override
      public void onViewCaptured(View capturedChild, int activePointerId) {
        super.onViewCaptured(capturedChild, activePointerId);
        if (onDragDropListener != null) {
          onDragDropListener.onDragDrop(true);
        }
      }

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

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)即可
}
}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Android自定義控件實(shí)現(xiàn)時(shí)鐘效果

    Android自定義控件實(shí)現(xiàn)時(shí)鐘效果

    這篇文章主要介紹了Android自定義控件實(shí)現(xiàn)時(shí)鐘效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2019-12-12
  • Android中Notification 提示對(duì)話框

    Android中Notification 提示對(duì)話框

    Notification,俗稱通知,是一種具有全局效果的通知,它展示在屏幕的頂端,首先會(huì)表現(xiàn)為一個(gè)圖標(biāo)的形式,當(dāng)用戶向下滑動(dòng)的時(shí)候,展示出通知具體的內(nèi)容
    2016-01-01
  • Android編程之藍(lán)牙測(cè)試實(shí)例

    Android編程之藍(lán)牙測(cè)試實(shí)例

    這篇文章主要介紹了Android編程之藍(lán)牙測(cè)試,較為詳細(xì)的分析了Android藍(lán)牙測(cè)試的相關(guān)運(yùn)行環(huán)境與調(diào)試技巧,非常具有實(shí)用價(jià)值,需要的朋友可以參考下
    2015-04-04
  • Android 點(diǎn)擊生成二維碼功能實(shí)現(xiàn)代碼

    Android 點(diǎn)擊生成二維碼功能實(shí)現(xiàn)代碼

    二維碼,我們也稱作QRCode,QR表示quick response即快速響應(yīng),在很多App中我們都能見到二維碼的身影,最常見的莫過(guò)于微信了。接下來(lái)給大家介紹android 點(diǎn)擊生成二維碼功能實(shí)現(xiàn)代碼,需要的朋友參考下吧
    2017-11-11
  • Android與JS之間跨平臺(tái)異步調(diào)用實(shí)例詳解

    Android與JS之間跨平臺(tái)異步調(diào)用實(shí)例詳解

    這篇文章主要介紹了Android與JS之間跨平臺(tái)異步調(diào)用實(shí)例詳解的相關(guān)資料,需要的朋友可以參考下
    2016-11-11
  • Android自定義仿ios加載彈窗

    Android自定義仿ios加載彈窗

    這篇文章主要為大家詳細(xì)介紹了Android自定義仿ios加載彈窗,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2021-05-05
  • Android自定義帶增長(zhǎng)動(dòng)畫和點(diǎn)擊彈窗提示效果的柱狀圖DEMO

    Android自定義帶增長(zhǎng)動(dòng)畫和點(diǎn)擊彈窗提示效果的柱狀圖DEMO

    這篇文章主要介紹了Android自定義帶增長(zhǎng)動(dòng)畫和點(diǎn)擊彈窗提示效果的柱狀圖的相關(guān)資料,非常不錯(cuò)具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2016-11-11
  • Android調(diào)用第三方QQ登錄代碼分享

    Android調(diào)用第三方QQ登錄代碼分享

    現(xiàn)在的項(xiàng)目開發(fā),調(diào)用第三方登錄,幾乎是必須的,這篇文章主要介紹了Android調(diào)用第三方QQ登錄代碼分享
    2016-05-05
  • Android截屏分享功能

    Android截屏分享功能

    最近項(xiàng)目經(jīng)理交給我一個(gè)任務(wù),要求實(shí)現(xiàn)android截屏功能,包括Android截屏獲取圖片、將圖片保存到本地、通知系統(tǒng)相冊(cè)更新、通過(guò)微信、QQ、微博分享截屏圖片。小編把實(shí)現(xiàn)思路分享到腳本之家平臺(tái),需要的朋友參考下
    2017-12-12
  • Android仿微信通訊錄列表側(cè)邊欄效果

    Android仿微信通訊錄列表側(cè)邊欄效果

    這篇文章主要為大家詳細(xì)介紹了Android仿微信通訊錄列表側(cè)邊欄效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-02-02

最新評(píng)論

贡嘎县| 托克托县| 芦山县| 舟山市| 凤山市| 明星| 宜丰县| 祁门县| 青海省| 临沂市| 东乌珠穆沁旗| 崇信县| 肇东市| 石柱| 满洲里市| 峨眉山市| 宜昌市| 万安县| 南乐县| 眉山市| 金堂县| 石河子市| 滁州市| 天峻县| 乌什县| 开原市| 泰来县| 温泉县| 榆中县| 罗江县| 山阴县| 奎屯市| 自治县| 夏河县| 垣曲县| 永川市| 小金县| 枣强县| 祁阳县| 尉犁县| 台前县|