`

android View中scrollTo以及 scrollBy方法学习

 
阅读更多
首先 ,我们必须明白在Android View视图是没有边界的,Canvas是没有边界的,只不过我们通过绘制特定的View时对Canvas对象进行了一定的操作,例如 :translate(平移)、clipRect(剪切)等,以便达到我们的对该Canvas对象绘制的要求,我们可以将这种无边界的视图称为“视图坐标”-----它不受物理屏幕限制。通常我们所理解的一个Layout布局文件只是该视图的显示区域,超过了这个显示区域将不能显示到父视图的区域中,对应的,我们可以将这种有边界的视图称为“布局坐标”
------ 父视图给子视图分配的布局(layout)大小。而且,一个视图的在屏幕的起始坐标位于视图坐标起始处,如下图所示。

这么来说吧 ,世界本是无边无界的,可是我们的眼睛我们的心约束了我们所看到的“世界” 。
如下所示:



黑色框框表示该子视图的布局坐标, 褐色框框表示该子视图的视图坐标--该坐标是无限的,超过了父视图给子视图规定的区域后,不再显示该超出内容。
那么下面的问题就是:如何将我们的视图的任意坐标能显示到该视图的中心坐标上呢? 由于该布局位置是只能显示特定的一块视图内容,因此我们需要通过scrollTo()或者scrollBy()方法将我们期望的视图“滚动”至布局坐标上。
在View.java中提供了了如下两个变量以及相应的属性方法去读取滚动值 ,如下: View.java类中  
/**
	 * The offset, in pixels, by which the content of this view is scrolled
	 * horizontally.
	 * {@hide}
	 */
	protected int mScrollX;   //该视图内容相当于视图起始坐标的偏移量   , X轴 方向
	/**
	 * The offset, in pixels, by which the content of this view is scrolled
	 * vertically.
	 * {@hide}
	 */
	protected int mScrollY;   //该视图内容相当于视图起始坐标的偏移量   , Y轴方向

	/**
     * Return the scrolled left position of this view. This is the left edge of
     * the displayed part of your view. You do not need to draw any pixels
     * farther left, since those are outside of the frame of your view on
     * screen.
     *
     * @return The left edge of the displayed part of your view, in pixels.
     */
    public final int getScrollX() {
        return mScrollX;
    }

    /**
     * Return the scrolled top position of this view. This is the top edge of
     * the displayed part of your view. You do not need to draw any pixels above
     * it, since those are outside of the frame of your view on screen.
     *
     * @return The top edge of the displayed part of your view, in pixels.
     */
    public final int getScrollY() {
        return mScrollY;
    }


注意,所谓的“by which the content of this view is scrolled”表示该偏移量只针对于该View中onDraw()方法里的具体内容实现,而不针对绘制背景图片等 。

提示:下文中提到的当前视图内容是在绘制在布局坐标处的内容。

public void scrollTo(int x, int y)
说明:在当前视图内容偏移至(x , y)坐标处,即显示(可视)区域位于(x , y)坐标处。
方法原型为: View.java类中
    /**
     * Set the scrolled position of your view. This will cause a call to
     * {@link #onScrollChanged(int, int, int, int)} and the view will be
     * invalidated.
     * @param x the x position to scroll to
     * @param y the y position to scroll to
     */
    public void scrollTo(int x, int y) {
    	//偏移位置发生了改变
        if (mScrollX != x || mScrollY != y) {
            int oldX = mScrollX;
            int oldY = mScrollY;
            mScrollX = x;  //赋新值,保存当前便宜量
            mScrollY = y;
            //回调onScrollChanged方法
            onScrollChanged(mScrollX, mScrollY, oldX, oldY);
            if (!awakenScrollBars()) {
                invalidate();  //一般都引起重绘
            }
        }
    }
    


public void scrollBy(int x, int y)
说明:在当前视图内容继续偏移(x , y)个单位,显示(可视)区域也跟着偏移(x,y)个单位。
方法原型为: View.java类中
  /**
     * Move the scrolled position of your view. This will cause a call to
     * {@link #onScrollChanged(int, int, int, int)} and the view will be
     * invalidated.
     * @param x the amount of pixels to scroll by horizontally
     * @param y the amount of pixels to scroll by vertically
     */
    // 看出原因了吧 。。 mScrollX 与 mScrollY 代表我们当前偏移的位置 , 在当前位置继续偏移(x ,y)个单位
    public void scrollBy(int x, int y) {
        scrollTo(mScrollX + x, mScrollY + y);
    }


第二个小Demo则有了Launcher的模样,能够左右切换屏幕 。实现功能如下: 采用了一个自定义ViewGroup,该ViewGroup对象包含了3个LinearLayout子视图,并且以一定的布局坐标(由layout()方法指定)显示在ViewGroup上。 接下来,即可调用该
ViewGroup对象的scrollTo或者scrollBy()方法切换指定视图内容了,即切换屏幕。 呵呵 ,挺好玩的吧 。



//自定义ViewGroup , 包含了三个LinearLayout控件,存放在不同的布局位置,通过scrollBy或者scrollTo方法切换
public class MultiViewGroup extends ViewGroup {

	private Context mContext;

	private static String TAG = "MultiViewGroup";

	public MultiViewGroup(Context context) {
		super(context);
		mContext = context;
		init();
	}

	public MultiViewGroup(Context context, AttributeSet attrs) {
		super(context, attrs);
		mContext = context;
		init();
	}

	private void init() {
		// 初始化3个 LinearLayout控件
		LinearLayout oneLL = new LinearLayout(mContext);
		oneLL.setBackgroundColor(Color.RED);
        addView(oneLL);
		
		LinearLayout twoLL = new LinearLayout(mContext);
		twoLL.setBackgroundColor(Color.YELLOW);
		addView(twoLL);
		
		LinearLayout threeLL = new LinearLayout(mContext);
		threeLL.setBackgroundColor(Color.BLUE);
		addView(threeLL);
	}

	// measure过程
	@Override
	protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

		Log.i(TAG, "--- start onMeasure --");

		// 设置该ViewGroup的大小
		int width = MeasureSpec.getSize(widthMeasureSpec);
		int height = MeasureSpec.getSize(heightMeasureSpec);
		setMeasuredDimension(width, height);

		int childCount = getChildCount();
		Log.i(TAG, "--- onMeasure childCount is -->" + childCount);
		for (int i = 0; i < childCount; i++) {
			View child = getChildAt(i);
			// 设置每个子视图的大小 , 即全屏
			child.measure(MultiScreenActivity.screenWidth, MultiScreenActivity.scrrenHeight);
		}
	}

	// layout过程
	@Override
	protected void onLayout(boolean changed, int l, int t, int r, int b) {
		// TODO Auto-generated method stub
		Log.i(TAG, "--- start onLayout --");
		int startLeft = 0; // 每个子视图的起始布局坐标
		int startTop = 10; // 间距设置为10px 相当于 android:marginTop= "10px"
		int childCount = getChildCount();
		Log.i(TAG, "--- onLayout childCount is -->" + childCount);
		for (int i = 0; i < childCount; i++) {
			View child = getChildAt(i);
			child.layout(startLeft, startTop, 
					startLeft + MultiScreenActivity.screenWidth, 
					startTop + MultiScreenActivity.scrrenHeight);
			startLeft = startLeft + MultiScreenActivity.screenWidth ; //校准每个子View的起始布局位置
			//三个子视图的在屏幕中的分布如下 [0 , 320] / [320,640] / [640,960]
		}
	}

}












  • 大小: 46.3 KB
  • 大小: 28.3 KB
分享到:
评论
发表评论

文章已被作者锁定,不允许评论。

相关推荐

    android scrollTo,scrollBy与Scroller demo

    `scrollTo`、`scrollBy`和`Scroller`是Android视图组件中处理滚动的核心方法,它们各自扮演着不同的角色,共同实现了平滑且可控的滚动效果。下面我们将深入探讨这三个概念及其在实际开发中的应用。 1. `scrollTo`...

    布局滑动 scrollTo 和 scrollBy 应用DEMO

    android 布局之滑动探究 scrollTo 和 scrollBy 方法使用说明 对应的博文地址:http://blog.csdn.net/vipzjyno1/article/details/24577023

    Android scrollTo和scrollBy方法使用解析

    在Android开发中,`scrollTo`和`scrollBy`是两个关键的方法,它们用于改变View的位置,特别是调整可滚动视图的内容位置。这两个方法在处理滚动操作时具有重要的作用。 `scrollTo(x, y)`方法是用来将View的内容移动...

    View.scrollBy()与View.scrollTo()的使用

    本文将详细探讨`View.scrollBy()`和`View.scrollTo()`这两个方法的使用,以及它们在实际开发中的应用。 `View.scrollBy(x, y)`方法是用来平滑地滚动视图(View)的,它会沿着x轴和y轴方向移动指定的距离。这里的x和...

    scrollTo(),scrollBy(),getScrollX(), getScrollY() 应用 Demo

    Android View api - scrollTo(),scrollBy(),getScrollX(), getScrollY(),博客地址:http://blog.csdn.net/amoscxy/article/details/77191151

    Android Scroller大揭秘

    我们的滑动控件如SrollView可以限定宽、高大小,以及在布局中的位置,但是滑动控件中的内容(或者里面的childView)可以是无限长、宽的,我们调用View的scrollTo、scrollBy方法,相当于是移动滑动控件中的画布C

    Android View事件机制 21问21答

    Android View事件机制是Android开发中的核心部分,它涉及到用户与应用程序界面的交互。本文将通过21个问题和答案深入探讨这一主题。 1. **View的坐标参数**:View的坐标参数包括Left、Right、Top、Bottom,它们表示...

    Android view面试专题.pdf

    在Android开发中,View是构建用户界面的基础组件,面试中经常涉及到View的相关问题。本文将深入探讨View的滑动方式、事件分发机制、加载流程以及measure、layout和draw的绘制过程。 1. **View的滑动方式** - `...

    ScroolDemo ScroolDemo

    android view 中滚动scrollTo和scrollBy mScrollX:表示离视图起始位置的x水平方向的偏移量 mScrollY:表示离视图起始位置的y垂直方向的偏移量 分别通过getScrollX() 和getScrollY()方法获得。 注意:mScrollX和...

    Android View的六种移动方式

    在Android开发中,自定义View是一项常见的任务,它允许开发者根据特定需求创建独特的用户界面元素。本文将深入探讨“Android View的六种移动方式”,帮助开发者掌握如何动态地改变View的位置,实现各种动画效果和...

    Android仿天天动听歌曲自动滚动view

    首先自己想了下Android要滚动的那就是scroller类或者scrollto、scrollby结合了,或者view.layout()方法,或者使用动画。但是要循环滚动,貌似这些到最后一行滚动到第一行都有往回滚的效果,都不是很好的解决方法。...

    scrollview的使用

    总之,ScrollView是Android开发中的基础组件,理解和掌握它的使用、滚动状态判断以及scrollTo和scrollBy的区别,对于创建用户友好的界面至关重要。在实践中不断试验和优化,才能让滚动体验更加流畅自然。

    View滑动的三种实现方法

    `ScrollBy()` 和 `ScrollTo()` 是 Android 中 View 类提供的两个方法,用于实现视图内部内容的平移。这两个方法主要适用于可滚动的视图,如 ScrollView 或 HorizontalScrollView。 - `scrollBy(x, y)`:这个方法...

    利用Scroller实现防QQ列表侧滑效果

    在Android开发中,为了提供类似QQ列表的侧滑效果,我们常常会利用Scroller类结合View的scrollTo方法来实现。Scroller是一个动画工具类,它并不直接改变View的位置,而是计算出一个平滑的滚动过程,然后由开发者通过...

    全面的Android view相关知识汇总整理

    - `scrollTo()`和`scrollBy()`:滚动View的内容,而不是View本身的位置,注意参照物的区别。 - `Scroller`:不直接滑动View,而是提供平滑滚动的计算,配合`computeScroll()`方法实现视图滚动。 2. **View的事件...

    android横向滑动选择的View

    将这些方法与HorizontalScrollView的scrollBy()或scrollTo()方法结合,可以实现流畅的滑动交互。 为了进一步增强用户体验,我们可以添加一些额外功能,比如无限循环滚动。这需要在滚动到达边缘时,智能地重新定位子...

    android 滚动demo

    通过分析这个"android 滚动demo",我们可以学习到如何在Android中创建自定义滚动效果,理解`scrollTo`和`scrollBy`的区别,以及如何结合`OverScroller`等组件来提升用户体验。这将有助于你开发出更符合用户习惯的...

    jianjiandandande#StudyNode#View的滑动1

    View边缘是指View的位置,由四个顶点组成,而View内容边缘是指View中的内容的边缘,scrollTo和scrollBy只能改变View内容的位置而不能

    Android自定义View弹性滑动Scroller详解

    Scroller 是一个滑动帮助类,通过配合 scrollTo/ScrollBy 方法让 View 产生缓慢的滑动,产生动画的效果。 Scroller 的使用分为三个步骤: 第一步:实例化 Scroller 对象,Scroller 有三个构造方法,分别是: ``` ...

Global site tag (gtag.js) - Google Analytics