欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android實(shí)現(xiàn)下拉放大圖片松手自動反彈效果

 更新時(shí)間:2018年03月28日 14:10:02   作者:bai1002  
這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)下拉放大圖片松手自動反彈效果,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了Android實(shí)現(xiàn)下拉放大圖片松手自動反彈的具體代碼,供大家參考,具體內(nèi)容如下

直接看效果:

下面就是代碼

HeadZoomScrollView類

import android.animation.ValueAnimator; 
import android.content.Context; 
import android.util.AttributeSet; 
import android.view.MotionEvent; 
import android.view.View; 
import android.view.ViewGroup; 
import android.widget.ScrollView; 
 
/** 
 * Created by BAIPEI on 2017/11/21. 
 */ 
 
public class HeadZoomScrollView extends ScrollView { 
  private View mZoomView; 
  private int mZoomViewWidth; 
  private int mZoomViewHeight; 
 
  private float firstPosition;//記錄第一次按下的位置 
  private boolean isScrolling;//是否正在縮放 
  private float mScrollRate = 0.3f;//縮放系數(shù),縮放系數(shù)越大,變化的越大 
  private float mReplyRate = 0.5f;//回調(diào)系數(shù),越大,回調(diào)越慢 
 
  public HeadZoomScrollView(Context context) { 
    super(context); 
  } 
 
  public HeadZoomScrollView(Context context, AttributeSet attrs) { 
    super(context, attrs); 
  } 
 
  public HeadZoomScrollView(Context context, AttributeSet attrs, int defStyleAttr) { 
    super(context, attrs, defStyleAttr); 
  } 
 
  public void setmZoomView(View mZoomView) { 
    this.mZoomView = mZoomView; 
  } 
 
  public void setmScrollRate(float mScrollRate) { 
    this.mScrollRate = mScrollRate; 
  } 
 
  public void setmReplyRate(float mReplyRate) { 
    this.mReplyRate = mReplyRate; 
  } 
 
  @Override 
  protected void onFinishInflate() { 
    super.onFinishInflate(); 
    init(); 
  } 
 
  private void init() { 
    setOverScrollMode(OVER_SCROLL_NEVER); 
    if (getChildAt(0) != null) { 
      ViewGroup vg = (ViewGroup) getChildAt(0); 
      if (vg.getChildAt(0) != null) { 
        mZoomView = vg.getChildAt(0); 
      } 
    } 
  } 
 
  @Override 
  public boolean onTouchEvent(MotionEvent ev) { 
    if (mZoomViewWidth <= 0 || mZoomViewHeight <= 0) { 
      mZoomViewWidth = mZoomView.getMeasuredWidth(); 
      mZoomViewHeight = mZoomView.getMeasuredHeight(); 
    } 
    switch (ev.getAction()) { 
      case MotionEvent.ACTION_UP: 
        //手指離開后恢復(fù)圖片 
        isScrolling = false; 
        replyImage(); 
        break; 
      case MotionEvent.ACTION_MOVE: 
        if (!isScrolling) { 
          if (getScrollY() == 0) { 
            firstPosition = ev.getY();// 滾動到頂部時(shí)記錄位置,否則正常返回 
          } else { 
            break; 
          } 
        } 
        int distance = (int) ((ev.getY() - firstPosition) * mScrollRate); // 滾動距離乘以一個(gè)系數(shù) 
        if (distance < 0) { // 當(dāng)前位置比記錄位置要小,正常返回 
          break; 
        } 
 
        // 處理放大 
        isScrolling = true; 
        setZoom(distance); 
        return true; // 返回true表示已經(jīng)完成觸摸事件,不再處理 
    } 
    return true; 
  } 
 
  //回彈動畫 
  private void replyImage() { 
    float distance = mZoomView.getMeasuredWidth() - mZoomViewWidth; 
    ValueAnimator valueAnimator = ValueAnimator.ofFloat(distance, 0f).setDuration((long) (distance * mReplyRate)); 
    valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { 
      @Override 
      public void onAnimationUpdate(ValueAnimator animation) { 
        setZoom((Float) animation.getAnimatedValue()); 
      } 
    }); 
    valueAnimator.start(); 
  } 
 
  public void setZoom(float zoom) { 
    if (mZoomViewWidth <= 0 || mZoomViewHeight <= 0) { 
      return; 
    } 
    ViewGroup.LayoutParams lp = mZoomView.getLayoutParams(); 
    lp.width = (int) (mZoomViewWidth + zoom); 
    lp.height = (int) (mZoomViewHeight * ((mZoomViewWidth + zoom) / mZoomViewWidth)); 
    ((MarginLayoutParams) lp).setMargins(-(lp.width - mZoomViewWidth) / 2, 0, 0, 0); 
    mZoomView.setLayoutParams(lp); 
  } 
 
} 

MainActivity里面沒有寫代碼就不粘了

下面是布局activity_main

<bwie.com.pulllistview.HeadZoomScrollView 
  xmlns:android="http://schemas.android.com/apk/res/android" 
  android:id="@+id/scrollView" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent"> 
 
  <LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical"> 
 
    <ImageView 
      android:id="@+id/iv_show" 
      android:layout_width="match_parent" 
      android:layout_height="200dp" 
      android:layout_weight="1" 
      android:src="@drawable/a1"/> 
    <TextView 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="數(shù)據(jù)1"/> 
    <TextView 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="數(shù)據(jù)2"/> 
    <TextView 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="數(shù)據(jù)3"/> 
    <TextView 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="數(shù)據(jù)4"/> 
 
  </LinearLayout> 
 
</bwie.com.pulllistview.HeadZoomScrollView> 

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

相關(guān)文章

  • android實(shí)現(xiàn)彈出提示框

    android實(shí)現(xiàn)彈出提示框

    這篇文章主要為大家詳細(xì)介紹了android實(shí)現(xiàn)彈出提示框,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2021-01-01
  • Android編程之繪制文本(FontMetrics)實(shí)現(xiàn)方法

    Android編程之繪制文本(FontMetrics)實(shí)現(xiàn)方法

    這篇文章主要介紹了Android編程之繪制文本(FontMetrics)實(shí)現(xiàn)方法,結(jié)合實(shí)例形式較為詳細(xì)的分析了Android使用FontMetrics對象繪制文本的相關(guān)技巧,需要的朋友可以參考下
    2015-12-12
  • Android自定義LinearLayout布局顯示不完整的解決方法

    Android自定義LinearLayout布局顯示不完整的解決方法

    這篇文章主要給大家介紹了關(guān)于Android自定義LinearLayout但布局顯示不完整的解決方法,文中通過示例代碼介紹的非常詳細(xì),對大家具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧。
    2017-11-11
  • android studio 3.6.0 綁定視圖新特性的方法

    android studio 3.6.0 綁定視圖新特性的方法

    這篇文章主要介紹了android studio 3.6.0 綁定視圖新特性的方法,本文通過實(shí)例代碼給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2020-04-04
  • Android實(shí)現(xiàn)快遞單號查詢快遞狀態(tài)信息

    Android實(shí)現(xiàn)快遞單號查詢快遞狀態(tài)信息

    這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)快遞單號查詢快遞狀態(tài)信息,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2018-05-05
  • Android編程簡單解析JSON格式數(shù)據(jù)的方法示例

    Android編程簡單解析JSON格式數(shù)據(jù)的方法示例

    這篇文章主要介紹了Android編程簡單解析JSON格式數(shù)據(jù)的方法,結(jié)合實(shí)例形式分析了Android編程解析json格式數(shù)據(jù)的實(shí)現(xiàn)方法與相關(guān)操作技巧,需要的朋友可以參考下
    2017-08-08
  • Android實(shí)現(xiàn)聲音采集回聲與回聲消除

    Android實(shí)現(xiàn)聲音采集回聲與回聲消除

    這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)聲音采集回聲與回聲消除,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2021-08-08
  • Kotlin函數(shù)使用示例教程

    Kotlin函數(shù)使用示例教程

    這篇文章主要為大家介紹了Kotlin函數(shù)的使用示例教程,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-06-06
  • Android XML數(shù)據(jù)的三種解析方式

    Android XML數(shù)據(jù)的三種解析方式

    這篇文章主要為大家詳細(xì)介紹了Android XML數(shù)據(jù)的三種解析方式,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2016-11-11
  • Android Listview notifyDataSetChanged() 不起作用的解決方案

    Android Listview notifyDataSetChanged() 不起作用的

    這篇文章主要介紹了Android Listview notifyDataSetChanged()不起作用的解決方法,本文給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友參考下吧
    2024-08-08

最新評論