我的编程空间,编程开发者的网络收藏夹
学习永远不晚

怎么在Android中利用ScrollView 实现一个伸缩放大效果

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

怎么在Android中利用ScrollView 实现一个伸缩放大效果

这篇文章给大家介绍怎么在Android中利用ScrollView 实现一个伸缩放大效果,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

核心的控件就是下面的这段代码:

package com.kokjuis.travel.customView; import android.animation.ObjectAnimator; import android.animation.ValueAnimator; import android.content.Context; import android.graphics.Rect; import android.util.AttributeSet; import android.view.MotionEvent; import android.view.View; import android.view.ViewGroup; import android.view.animation.TranslateAnimation; import android.widget.ScrollView;  public class BounceZoomScrollView extends ScrollView {  private static final String TAG = "BounceScrollView";  //----头部收缩属性--------  // 记录首次按下位置  private float mFirstPosition = 0;  // 头部图片是否正在放大  private Boolean mScaling = false;  private View dropZoomView;//需要被放大的view  private int dropZoomViewWidth;  private int dropZoomViewHeight;  //----头部收缩属性end--------  //------尾部收缩属性--------  private View inner;// 子View  private float y;// 点击时y坐标  private Rect normal = new Rect();// 矩形(这里只是个形式,只是用于判断是否需要动画.)  private boolean isCount = false;// 是否开始计算  //最后的坐标  private float lastX = 0;  private float lastY = 0;  //当前坐标  private float currentX = 0;  private float currentY = 0;  //移动的坐标量  private float distanceX = 0;  private float distanceY = 0;  private boolean upDownSlide = false; //判断上下滑动的flag  //------尾部收缩属性end--------  public BounceScrollView(Context context, AttributeSet attrs) {  super(context, attrs);  }  //初始化  private void init() {  setOverScrollMode(OVER_SCROLL_NEVER);  if (getChildAt(0) != null) {   inner = getChildAt(0);//这个是底部收缩的view   //头部收缩的   ViewGroup vg = (ViewGroup) getChildAt(0);   if (vg.getChildAt(0) != null) {   dropZoomView = vg.getChildAt(0);   }  }  }    @Override  protected void onFinishInflate() {  //初始化  init();  super.onFinishInflate();  }  @Override  public boolean dispatchTouchEvent(MotionEvent ev) {  //这里只是计算尾部坐标  currentX = ev.getX();  currentY = ev.getY();  switch (ev.getAction()) {   case MotionEvent.ACTION_MOVE:   distanceX = currentX - lastX;   distanceY = currentY - lastY;   if (Math.abs(distanceX) < Math.abs(distanceY) && Math.abs(distanceY) > 12) {    upDownSlide = true;   }   break;  }  lastX = currentX;  lastY = currentY;  if (upDownSlide && inner != null) commOnTouchEvent(ev);  return super.dispatchTouchEvent(ev);  }    public void commOnTouchEvent(MotionEvent ev) {  //头部缩放计算  if (dropZoomViewWidth <= 0 || dropZoomViewHeight <= 0) {   dropZoomViewWidth = dropZoomView.getMeasuredWidth();   dropZoomViewHeight = dropZoomView.getMeasuredHeight();  }  switch (ev.getAction()) {   case MotionEvent.ACTION_UP:   //手指离开后头部恢复图片   mScaling = false;   replyImage();   // 手指松开尾部恢复   if (isNeedAnimation()) {    animation();    isCount = false;   }   clear0();   break;   //这里头尾分开处理,互不干扰   case MotionEvent.ACTION_MOVE:   //尾部处理   final float preY = y;// 按下时的y坐标   float nowY = ev.getY();// 时时y坐标   int deltaY = (int) (preY - nowY);// 滑动距离   if (!isCount) {    deltaY = 0; // 在这里要归0.   }   y = nowY;   // 当滚动到最上或者最下时就不会再滚动,这时移动布局   if (isNeedMove()) {    // 初始化头部矩形    if (normal.isEmpty()) {    // 保存正常的布局位置    normal.set(inner.getLeft(), inner.getTop(),     inner.getRight(), inner.getBottom());    }    // 移动布局    inner.layout(inner.getLeft(), inner.getTop() - deltaY / 2,     inner.getRight(), inner.getBottom() - deltaY / 2);   }   isCount = true;   //尾部处理end   //头部处理   if (!mScaling) {    if (getScrollY() == 0) {    mFirstPosition = ev.getY();// 滚动到顶部时记录位置,否则正常返回    } else {    break;    }   }   int distance = (int) ((ev.getY() - mFirstPosition) * 0.6); // 滚动距离乘以一个系数   if (distance < 0) { // 当前位置比记录位置要小,正常返回    break;   }   // 处理放大   mScaling = true;   setZoom(1 + distance);   //头部处理end   break;  }  }    public void animation() {  // 开启移动动画  TranslateAnimation ta = new TranslateAnimation(0, 0, inner.getTop(),   normal.top);  ta.setDuration(200);  inner.startAnimation(ta);  // 设置回到正常的布局位置  inner.layout(normal.left, normal.top, normal.right, normal.bottom);  normal.setEmpty();  }  // 是否需要开启动画  public boolean isNeedAnimation() {  return !normal.isEmpty();  }  // 回弹动画,header往上缩动画 (使用了属性动画)  public void replyImage() {  final float distance = dropZoomView.getMeasuredWidth() - dropZoomViewWidth;  // 设置动画  ValueAnimator anim = ObjectAnimator.ofFloat(0.0F, 1.0F).setDuration((long) (distance * 0.7));  anim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {   @Override   public void onAnimationUpdate(ValueAnimator animation) {   float cVal = (Float) animation.getAnimatedValue();   setZoom(distance - ((distance) * cVal));   }  });  anim.start();  }  //头部缩放  public void setZoom(float s) {  if (dropZoomViewHeight <= 0 || dropZoomViewWidth <= 0) {   return;  }  ViewGroup.LayoutParams lp = dropZoomView.getLayoutParams();  lp.width = (int) (dropZoomViewWidth + s);  lp.height = (int) (dropZoomViewHeight * ((dropZoomViewWidth + s) / dropZoomViewWidth));  dropZoomView.setLayoutParams(lp);  }    public boolean isNeedMove() {  int offset = inner.getMeasuredHeight() - getHeight();  int scrollY = getScrollY();  // 0是顶部,后面那个是底部  if (scrollY == 0 || scrollY == offset) {   return true;  }  return false;  }  //清理尾部属性值  private void clear0() {  lastX = 0;  lastY = 0;  distanceX = 0;  distanceY = 0;  upDownSlide = false;  } }

下面是我自己使用的一个layout例子:

<?xml version="1.0" encoding="utf-8"?> <com.kokjuis.travel.customView.BounceZoomScrollView xmlns:android="http://schemas.android.com/apk/res/android"  xmlns:imagecontrol="http://schemas.android.com/apk/res-auto"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:scrollbars="none">  <!-- <LinearLayout   android:id="@+id/ui_allchatlist_header_relativelayout"   android:layout_width="match_parent"   android:layout_height="45dp"   android:background="@drawable/bar_bg"   android:orientation="horizontal"   android:paddingBottom="5dp"   android:paddingTop="5dp">   <Button   android:id="@+id/ui_allchatlist_backbtn"   android:layout_width="wrap_content"   android:layout_height="match_parent"   android:layout_marginBottom="3dp"   android:layout_marginLeft="5dp"   android:layout_marginTop="3dp"   android:background="@null"   android:gravity="center"   android:text="我"   android:textColor="@color/white"   android:textSize="18sp" />  </LinearLayout>  -->  <LinearLayout  android:layout_width="match_parent"  android:layout_height="match_parent"  android:orientation="vertical">  <RelativeLayout   android:layout_width="match_parent"   android:layout_height="250dp"   android:layout_gravity="center_horizontal">   <ImageView   android:layout_width="match_parent"   android:layout_height="match_parent"   android:layout_marginBottom="40dp"   android:background="@drawable/personinfo_bg" />   <com.kokjuis.travel.customView.RoundImageView   android:id="@+id/headImage"   android:layout_width="80dp"   android:layout_height="80dp"   android:layout_alignParentBottom="true"   android:layout_centerHorizontal="true"   android:class="lazy" data-src="@drawable/headimg"   imagecontrol:border_inside_color="#fff7f2e9"   imagecontrol:border_outside_color="#ffd5d1c8"   imagecontrol:border_thickness="2dp" />  </RelativeLayout>  <LinearLayout   android:layout_width="match_parent"   android:layout_height="wrap_content"   android:orientation="vertical">   <TextView   android:id="@+id/name_tv"   android:layout_width="wrap_content"   android:layout_height="wrap_content"   android:layout_gravity="center_horizontal"   android:layout_marginTop="6dp"   android:gravity="center_vertical"   android:text="昵称:"   android:textSize="20sp" />   <TextView   android:id="@+id/motto_tv"   android:layout_width="wrap_content"   android:layout_height="40dp"   android:layout_gravity="center_horizontal"   android:gravity="center_vertical"   android:text="座右铭:"   android:textSize="11sp" />   <LinearLayout   android:layout_width="150dp"   android:layout_height="wrap_content"   android:layout_gravity="center_horizontal"   android:orientation="vertical">   <TextView    android:id="@+id/accounts_tv"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:layout_marginTop="8dp"    android:gravity="center_vertical"    android:text="帐号:"    android:textSize="12sp" />   <TextView    android:id="@+id/gender_tv"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:layout_marginTop="2dp"    android:gravity="center_vertical"    android:text="性别:"    android:textSize="12sp" />   </LinearLayout>   <Button   android:id="@+id/logout_btn"   android:layout_width="wrap_content"   android:layout_height="wrap_content"   android:layout_gravity="center_horizontal"   android:layout_marginTop="20dp"   android:text="注销" />  </LinearLayout>  </LinearLayout> </com.kokjuis.travel.customView.BounceZoomScrollView>

关于怎么在Android中利用ScrollView 实现一个伸缩放大效果就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

怎么在Android中利用ScrollView 实现一个伸缩放大效果

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

怎么在Android中利用ScrollView 实现一个伸缩放大效果

这篇文章给大家介绍怎么在Android中利用ScrollView 实现一个伸缩放大效果,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。核心的控件就是下面的这段代码:package com.kokjuis.travel.c
2023-05-31

怎么在Android中利用ScrollView实现一个放大回弹效果

这期内容当中小编将会给大家带来有关怎么在Android中利用ScrollView实现一个放大回弹效果,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。自定义ScrollView1、创建一个类,继承Scroll
2023-05-31

怎么在Android中利用ImageView实现一个放大缩小动画

这期内容当中小编将会给大家带来有关怎么在Android中利用ImageView实现一个放大缩小动画,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。1.配置文件直接添加当直接在布局文件中添加图片的话,可以在自
2023-05-31

如何在Android中利用ScrollView实现一个顶部悬停效果

这期内容当中小编将会给大家带来有关如何在Android中利用ScrollView实现一个顶部悬停效果,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。原理:原理其实很简单就是对view的gone和visibl
2023-05-31

Android 中怎么利用ScrollView实现反弹效果

本篇文章给大家分享的是有关Android 中怎么利用ScrollView实现反弹效果,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。自定义ScrollView控件:/** *
2023-05-30

怎么在Android中使用ScrollView实现一个下拉弹回动画效果

本篇文章给大家分享的是有关怎么在Android中使用ScrollView实现一个下拉弹回动画效果,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。Android是什么Android
2023-05-30

怎么在android中利用ProgressDialog实现一个全屏效果

怎么在android中利用ProgressDialog实现一个全屏效果?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。ProgressDialog的创建方式有两种,一种是ne
2023-05-30

怎么在Android中利用view实现一个太极效果

怎么在Android中利用view实现一个太极效果?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。Android自定义view实现太极效果实例代码之前一直想要个加载的load
2023-05-31

怎么在android中利用ProgressDialog实现一个加载效果

怎么在android中利用ProgressDialog实现一个加载效果?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。先自定义一个类继承ProgressDialogpubli
2023-05-31

怎么在HTML5中使用Canvas实现一个放大镜效果

这期内容当中小编将会给大家带来有关怎么在HTML5中使用Canvas实现一个放大镜效果,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。原理首先选择图片的一块区域,然后将这块区域放大,然后再绘制到原先的图片上
2023-06-09

Android利用ViewPager实现可滑动放大缩小画廊效果

画廊在很多的App设计中都有,如下图所示:该例子是我没事的时候写的一个小项目,具体源码地址请访问https://github.com/AlexSmille/YingMi。 该画廊类似封面的效果,滑到中间的图片会慢慢变大,离开的View会慢慢
2022-06-06

怎么在Android中利用TextView实现一个跑马灯效果

这期内容当中小编将会给大家带来有关怎么在Android中利用TextView实现一个跑马灯效果,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。TextView的跑马灯效果也就是指当你只想让TextView单
2023-05-31

怎么在HTML5中实现一个图片悬停放大效果

这篇文章将为大家详细讲解有关怎么在HTML5中实现一个图片悬停放大效果,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。HTML5 代码如下: <
2023-06-09

怎么在Android中利用ViewPager实现一个屏幕滑动效果

本篇文章给大家分享的是有关怎么在Android中利用ViewPager实现一个屏幕滑动效果,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。创建View创建一个在之后作为fragm
2023-05-30

怎么在Android中利用FloatingActionButton实现一个悬浮按钮效果

今天就跟大家聊聊有关怎么在Android中利用FloatingActionButton实现一个悬浮按钮效果,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。首先是这个最小的Tag:这个T
2023-05-31

Android中怎么利用EasyBarrage实现一个弹幕效果

Android中怎么利用EasyBarrage实现一个弹幕效果,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。概述EasyBarrage是Android平台的一种轻量级弹幕效
2023-05-30

如何在Android中利用imageview实现一个图片缩放功能

如何在Android中利用imageview实现一个图片缩放功能?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。Android 自定义imageview实现图片缩放实例详解 觉得
2023-05-31

使用iframe怎么实现一个移动端缩放效果

今天就跟大家聊聊有关使用iframe怎么实现一个移动端缩放效果,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。这是我习惯用的meta头部,使页面宽度根据设备宽度自适应变化
2023-06-09

怎么在Android应用中利用Bitmap实现一个位图旋转效果

怎么在Android应用中利用Bitmap实现一个位图旋转效果?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。位图的旋转也可以借助Matrix或者Canvas来实现。通过po
2023-05-31

怎么在Android应用中利用CoordinatorLayout实现一个标题滚动效果

本篇文章为大家展示了怎么在Android应用中利用CoordinatorLayout实现一个标题滚动效果,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。在Material Design里,Coordi
2023-05-31

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录