图解Android View的scrollTo(),scrollBy(),getScrollX(), getScrollY()

时间:2022-09-07 22:24:58

https://blog.csdn.net/bigconvience/article/details/26697645

Android系统手机屏幕的左上角为坐标系,同时y轴方向与笛卡尔坐标系的y轴方向想反。通过提供的api如getLeft , getTop, getBottom, getRight可以获得控件在parent中的相对位置。同时,也可以获得控件在屏幕中的绝对位置,详细用法可参考android应用程序中获取view的位置

当我们编写一些自定义的滑动控件时,会用到一些api如scrollTo(),scrollBy(),getScrollX(), getScrollY()。由于常常会对函数getScrollX(), getScrollY()返回的值的含义产生混淆,尤其是正负关系,因此本文将使用几幅图来对这些函数进行讲解以方便大家记忆。

注意:调用View的scrollTo()和scrollBy()是用于滑动View中的内容,而不是把某个View的位置进行改变。如果想改变莫个View在屏幕中的位置,可以使用如下的方法。

调用public void offsetLeftAndRight(int offset)用于左右移动方法或public void offsetTopAndBottom(int offset)用于上下移动。

如:button.offsetLeftAndRignt(300)表示将button控件向左移动300个像素。

scrollTo(int x, int y) 是将View中内容滑动到相应的位置,参考的坐标系原点为parent View的左上角。

调用scrollTo(100, 0)表示将View中的内容移动到x = 100, y = 0的位置,如下图所示。注意,图中黄色矩形区域表示的是一个parent View,绿色虚线矩形为parent view中的内容。一般情况下两者的大小一致,本文为了显示方便,将虚线框画小了一点。图中的黄色区域的位置始终不变,发生位置变化的是显示的内容。

图解Android View的scrollTo(),scrollBy(),getScrollX(), getScrollY()

同理,scrollTo(0, 100)的效果如下图所示:

图解Android View的scrollTo(),scrollBy(),getScrollX(), getScrollY()

scrollTo(100, 100)的效果图如下:

图解Android View的scrollTo(),scrollBy(),getScrollX(), getScrollY()

若函数中参数为负值,则子View的移动方向将相反。

图解Android View的scrollTo(),scrollBy(),getScrollX(), getScrollY()

scrollBy(int x, int y)其实是对scrollTo的包装,移动的是相当位置。 scrollTo(int x, int y)的源码和scrollBy(int x, int y)源码如下所示.

  1.  
    /**
  2.  
    * Move the scrolled position of your view. This will cause a call to
  3.  
    * {@link #onScrollChanged(int, int, int, int)} and the view will be
  4.  
    * invalidated.
  5.  
    * @param x the amount of pixels to scroll by horizontally<pre name="code" class="java"> /**
  6.  
    * Set the scrolled position of your view. This will cause a call to
  7.  
    * {@link #onScrollChanged(int, int, int, int)} and the view will be
  8.  
    * invalidated.
  9.  
    * @param x the x position to scroll to
  10.  
    * @param y the y position to scroll to
  11.  
    */
  12.  
    public void scrollTo(int x, int y) {
  13.  
    if (mScrollX != x || mScrollY != y) {
  14.  
    int oldX = mScrollX;
  15.  
    int oldY = mScrollY;
  16.  
    mScrollX = x;
  17.  
    mScrollY = y;
  18.  
    invalidateParentCaches();
  19.  
    onScrollChanged(mScrollX, mScrollY, oldX, oldY);
  20.  
    if (!awakenScrollBars()) {
  21.  
    postInvalidateOnAnimation();
  22.  
    }
  23.  
    }
  24.  
    }
/* @param y the amount of pixels to scroll by vertically */ 
public void scrollBy(int x, int y) { scrollTo(mScrollX + x, mScrollY + y); }

可见,mScrollX和mScrollY是View类中专门用于记录滑动位置的变量。这两个函数最终调用onScrollChanged()函数,感兴趣者可以参考他们的源代码。

理解了scrollTo(int x, int y)和scrollBy(int x, int y)的用法,就不难理解getScrollX() 和getScrollY()。这两个函数的源码如下所示:

  1.  
    /**
  2.  
    * Return the scrolled left position of this view. This is the left edge of
  3.  
    * the displayed part of your view. You do not need to draw any pixels
  4.  
    * farther left, since those are outside of the frame of your view on
  5.  
    * screen.
  6.  
    *
  7.  
    * @return The left edge of the displayed part of your view, in pixels.
  8.  
    */
  9.  
    public final int getScrollX() {
  10.  
    return mScrollX;
  11.  
    }
    1.  
      /**
    2.  
      * Return the scrolled top position of this view. This is the top edge of
    3.  
      * the displayed part of your view. You do not need to draw any pixels above
    4.  
      * it, since those are outside of the frame of your view on screen.
    5.  
      *
    6.  
      * @return The top edge of the displayed part of your view, in pixels.
    7.  
      */
    8.  
      public final int getScrollY() {
    9.  
      return mScrollY;
    10.  
      }

图解Android View的scrollTo(),scrollBy(),getScrollX(), getScrollY()的更多相关文章

  1. View:Android View的scrollTo&lpar;&rpar;&comma;scrollBy&lpar;&rpar;&comma;getScrollX&lpar;&rpar;&comma; getScrollY&lpar;&rpar;的理解

    Android系统手机屏幕的左上角为坐标系,同时y轴方向与笛卡尔坐标系的y轴方向想反.提供了 getLeft(), getTop(), getBottom(), getRight() 这些API来获取 ...

  2. 关于View的ScrollTo, getScrollX 和 getScrollY

    下载地址:源代码 当利用 Scroller 去滑动屏幕或者扩展 ScrollView 的时候,总是会用到 getScrollX 和 getScrollY 去获取当前View 滑动到的位置,那么getS ...

  3. Android View 的事件体系

    android 系统虽然提供了很多基本的控件,如Button.TextView等,但是很多时候系统提供的view不能满足我们的需求,此时就需要我们根据自己的需求进行自定义控件.这些控件都是继承自Vie ...

  4. 浅谈Android View滑动和弹性滑动

    引言 View的滑动这一块在实际开发中是非常重要的,无论是优秀的用户体验还是自定义控件都是需要对这一块了解的,我们今天来谈一下View的滑动. View的滑动 View滑动功能主要可以使用3种方式来实 ...

  5. getX,getY&comma;getScrollX&comma;getScrollY&comma;ScrollTo&lpar;&rpar;&comma;ScrollBy&lpar;&rpar;辨析

    前言:前两天看了自定义控件,其中有一些东西我觉得有必要深入理解一下 以下图为例: getX(),getY()返回的是触摸点A相对于view的位置 getRaw(),getRawY()返回的是触摸点B相 ...

  6. Android scrollTo&lpar;&rpar; scrollBy&lpar;&rpar; Scroller解说及应用

    版本号:1.0  日期:2014.6.17  2014.6.18 版权:© 2014 kince 转载注明出处   scrollTo() .scrollBy()及 Scroller在视图滑动中常常使用 ...

  7. Android中的ScrollTo和ScrollBy解析

    关于Android中的ScrollBy和ScrollTo方法相信大家并不陌生,这两个方法是在View中实现的.所以在各个继承了View的类都可以使用改方法. 在View中对这两个方法的源码编写是这样的 ...

  8. 图解Android - Android GUI 系统 &lpar;2&rpar; - 窗口管理 &lpar;View&comma; Canvas&comma; Window Manager&rpar;

    Android 的窗口管理系统 (View, Canvas, WindowManager) 在图解Android - Zygote 和 System Server 启动分析一 文里,我们已经知道And ...

  9. Android -- View移动的六种方法

    layout() 如果你将滑动后的目标位置的坐标传递给layout(),这样子就会把view的位置给重新布置了一下,在视觉上就是view的一个滑动的效果. public class DragView ...

随机推荐

  1. C&num;&lowbar;数据库基本交互

    //app.config <?xml version="1.0" encoding="utf-8" ?> <configuration> ...

  2. Hacker(21)----密码攻防之加密与解密基础

    密码对于用户而言并不陌生,它是一种用于保护重要信息和文件的工具,只有输入正确的密码才可查看文件和信息的具体内容.黑客为了获取这些信息,会采用各种方式来破解密码,因此用户不仅需要了解黑客破解密码的常用方 ...

  3. 微信H5支付网络环境未能通过安全验证,请稍后再试(获取终端ip )

    在写微信H5支付的时候需要获取终端IP使用官方的方法是不对的报错如下: 故重写一个:如下 function get_client_ip(){ if(getenv('HTTP_CLIENT_IP') & ...

  4. 开始 Python 之旅

    开始 Python 之旅 课程来源 本课程基于 Python for you and me 教程翻译制作,其中参考了 Python tutorial 和 The Python Standard Lib ...

  5. WebStorm2018破解

    参考网站http://www.sdbeta.com/wg/2018/0302/220048.html修改整理如下: webstorm 2018.1正式版破解summary jetbrainscrack ...

  6. Generator yield语法和 co模块

    Generator  yield 语法使用,也叫生成器,实际上就是多个异步按顺序执行 1.下面是一个读取两个文件的例子 const fs = require('fs'); const readFile ...

  7. 手机通过Charles抓取https包

      因为fiddler不能在mac上使用,而Charles是跨平台的,可以在mac上使用,所以需要了解一下Charles的使用   安装破解版Charles   下载破解版包,先启动一次未破解版的Ch ...

  8. 初试Docker on Debian on VirtualBox

    一直以来都对Docker如雷贯耳,很想尝试一下但都被各种忙给耽误了,最近由于项目调试,需要安装 Oracle 和 SQL Server 数据库,但又不想安装到本机系统里,于是下决心啃一下docker这 ...

  9. FZU 1492 地震预测&lpar;链表&rpar;

    实际上把数组排序一遍加入链表中,再记录好数组原来的数在链表中的位置.我们只需要维护链表的删除操作就可以了. # include <cstdio> # include <cstring ...

  10. C&num; 多线程操作实例

    1.多线程操作 一旦打开线程就必须记得关闭 1.第一部分 这是个数字叠加小功能 private void CountTo(int countTo, CancellationToken ct) { ; ...