view Scroller 分析

本文深入解析Scroller类的工作原理,详细解释如何通过Scroller类实现View系统的动画滚动效果,并阐述按钮点击触发重绘过程的机制。主要内容包括Scroller类的实现方式、computeScroll函数的作用、动态效果触发者分析以及代码实例展示。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

尊重原创作者,转载请注明出处:

http://blog.youkuaiyun.com/gemmem/article/details/7321910

  Scroller这个类理解起来有一定的困难,刚开始接触Scroller类的程序员可能无法理解Scroller和View系统是怎么样联系起来的。我经过自己的学习和实践,对Scroller的用法和工作原理有了一定的理解,在这里和大家分享一下,希望大家多多指教。

      首先从源码开始分析:

        View.java

 

  1.   /** 
  2.  * Called by a parent to request that a child update its values for mScrollX 
  3.  * and mScrollY if necessary. This will typically be done if the child is 
  4.  * animating a scroll using a {@link android.widget.Scroller Scroller} 
  5.  * object. 
  6.  */  
  7. public void computeScroll()  
  8. {  
  9. }  
      /**
     * Called by a parent to request that a child update its values for mScrollX
     * and mScrollY if necessary. This will typically be done if the child is
     * animating a scroll using a {@link android.widget.Scroller Scroller}
     * object.
     */
    public void computeScroll()
    {
    }



 

    computeScroll是一个空函数,很明显我们需要去实现它,至于做什么,就由我们自己来决定了。

    因为View的子类很多,在下面的例子中,我会在一个自定义的类MyLinearLayout中去实现它。

 

    ViewGroup.java

   

  1. @Override  
  2. protected void dispatchDraw(Canvas canvas) {  
  3.   
  4.             .......  
  5.   
  6.             .......  
  7.   
  8.             .......  
  9.   
  10.             .......  
  11.   
  12.             for (int i = 0; i < count; i++) {  
  13.             final View child = children[i];  
  14.             if ((child.mViewFlags & VISIBILITY_MASK) == VISIBLE || child.getAnimation() != null)  
  15.   
  16.             {  
  17.                 more |= drawChild(canvas, child, drawingTime);  
  18.             }  
  19.   
  20.             .......  
  21.   
  22.             .......  
  23.   
  24.             .......  
    @Override
    protected void dispatchDraw(Canvas canvas) {

                .......

                .......

                .......

                .......

                for (int i = 0; i < count; i++) {
                final View child = children[i];
                if ((child.mViewFlags & VISIBILITY_MASK) == VISIBLE || child.getAnimation() != null)

                {
                    more |= drawChild(canvas, child, drawingTime);
                }

                .......

                .......

                .......

  }


从dispatchDraw函数可以看出,ViewGroup会对它的每个孩子调用drawChild(),  在下面的例子中, ContentLinearLayout的孩子有2个,是2个MyLinearLayout类型的实例。

再看看drawChild函数:

  1.  protected boolean drawChild(Canvas canvas, View child, long drawingTime) {  
  2.   
  3.             ................  
  4.   
  5.             ................  
  6.   
  7.            child.computeScroll();  
  8.   
  9.             ................  
  10.   
  11.             ................  
  12.   
  13. }  
 protected boolean drawChild(Canvas canvas, View child, long drawingTime) {

            ................

            ................

           child.computeScroll();

            ................

            ................

}

 

看到这里,我想大家应该就明白了,在父容器重画自己的孩子时,它会调用孩子的computScroll方法,也就是说例程中的ContentLinearLayout在调用dispatchDraw()函数时会调用MyLinearLayout的computeScroll方法。

     这个computeScroll()函数正是我们大展身手的地方,在这个函数里我们可以去取得事先设置好的成员变量mScroller中的位置信息、速度信息等等,用这些参数来做我们想做的事情。

    看到这里大家一定迫不及待的想看代码了,代码如下:

    

  1. package com.yulongfei.scroller;  
  2.   
  3. import android.widget.LinearLayout;  
  4. import android.widget.Scroller;  
  5. import android.app.Activity;  
  6. import android.content.Context;  
  7. import android.graphics.Canvas;  
  8. import android.os.Bundle;  
  9. import android.util.Log;  
  10. import android.view.View;  
  11. import android.widget.Button;  
  12. import android.view.View.OnClickListener;  
  13.   
  14. public class TestScrollerActivity extends Activity {  
  15.  private static final String TAG = "TestScrollerActivity";  
  16.     LinearLayout lay1,lay2,lay0;  
  17.      private Scroller mScroller;  
  18.     @Override  
  19.     public void onCreate(Bundle savedInstanceState) {  
  20.         super.onCreate(savedInstanceState);  
  21.         mScroller = new Scroller(this);  
  22.         lay1 = new MyLinearLayout(this);  
  23.         lay2 = new MyLinearLayout(this);  
  24.    
  25.         lay1.setBackgroundColor(this.getResources().getColor(android.R.color.darker_gray));  
  26.         lay2.setBackgroundColor(this.getResources().getColor(android.R.color.white));  
  27.         lay0 = new ContentLinearLayout(this);  
  28.         lay0.setOrientation(LinearLayout.VERTICAL);  
  29.         LinearLayout.LayoutParams p0 = new LinearLayout.LayoutParams  
  30.         (LinearLayout.LayoutParams.FILL_PARENT,LinearLayout.LayoutParams.FILL_PARENT);      
  31.         this.setContentView(lay0, p0);  
  32.    
  33.         LinearLayout.LayoutParams p1 = new LinearLayout.LayoutParams  
  34.         (LinearLayout.LayoutParams.FILL_PARENT,LinearLayout.LayoutParams.FILL_PARENT);      
  35.         p1.weight=1;  
  36.         lay0.addView(lay1,p1);  
  37.         LinearLayout.LayoutParams p2 = new LinearLayout.LayoutParams  
  38.         (LinearLayout.LayoutParams.FILL_PARENT,LinearLayout.LayoutParams.FILL_PARENT);      
  39.         p2.weight=1;  
  40.         lay0.addView(lay2,p2);  
  41.         MyButton btn1 = new MyButton(this);  
  42.         MyButton btn2 = new MyButton(this);  
  43.         btn1.setText("btn in layout1");  
  44.         btn2.setText("btn in layout2");  
  45.         btn1.setOnClickListener(new OnClickListener(){  
  46.             @Override  
  47.             public void onClick(View v) {  
  48.                     mScroller.startScroll(00, -30, -3050);  
  49.                 }  
  50.         });  
  51.         btn2.setOnClickListener(new OnClickListener(){  
  52.             @Override  
  53.             public void onClick(View v) {  
  54.                     mScroller.startScroll(2020, -50, -5050);  
  55.                 }  
  56.         });  
  57.         lay1.addView(btn1);  
  58.         lay2.addView(btn2);  
  59.     }  
  60.     class MyButton extends Button  
  61.     {  
  62.      public MyButton(Context ctx)  
  63.      {  
  64.       super(ctx);  
  65.      }  
  66.      @Override  
  67.      protected void onDraw(Canvas canvas)  
  68.      {  
  69.       super.onDraw(canvas);  
  70.       Log.d("MyButton"this.toString() + " onDraw------");  
  71.      }  
  72.     }  
  73.       
  74.     class MyLinearLayout extends LinearLayout  
  75.     {  
  76.      public MyLinearLayout(Context ctx)  
  77.      {  
  78.       super(ctx);  
  79.      }  
  80.        
  81.      @Override  
  82.         /** 
  83.          * Called by a parent to request that a child update its values for mScrollX 
  84.          * and mScrollY if necessary. This will typically be done if the child is 
  85.          * animating a scroll using a {@link android.widget.Scroller Scroller} 
  86.          * object. 
  87.          */  
  88.         public void computeScroll()   
  89.      {    
  90.     Log.d(TAG, this.toString() + " computeScroll-----------");  
  91.     if (mScroller.computeScrollOffset())//如果mScroller没有调用startScroll,这里将会返回false。  
  92.     {    
  93.         //因为调用computeScroll函数的是MyLinearLayout实例,  
  94.      //所以调用scrollTo移动的将是该实例的孩子,也就是MyButton实例  
  95.         scrollTo(mScroller.getCurrX(), 0);   
  96.         Log.d(TAG, "getCurrX = " +  mScroller.getCurrX());  
  97.   
  98.         //继续让系统重绘  
  99.         getChildAt(0).invalidate();   
  100.     }  
  101.      }  
  102.     }  
  103.       
  104.     class ContentLinearLayout extends LinearLayout  
  105.     {  
  106.      public ContentLinearLayout(Context ctx)  
  107.      {  
  108.       super(ctx);  
  109.      }  
  110.        
  111.      @Override  
  112.      protected void dispatchDraw(Canvas canvas)  
  113.      {  
  114.       Log.d("ContentLinearLayout""contentview dispatchDraw");  
  115.       super.dispatchDraw(canvas);  
  116.      }  
  117.     }  
  118. }  
package com.yulongfei.scroller;

import android.widget.LinearLayout;
import android.widget.Scroller;
import android.app.Activity;
import android.content.Context;
import android.graphics.Canvas;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.view.View.OnClickListener;

public class TestScrollerActivity extends Activity {
 private static final String TAG = "TestScrollerActivity";
    LinearLayout lay1,lay2,lay0;
     private Scroller mScroller;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        mScroller = new Scroller(this);
        lay1 = new MyLinearLayout(this);
        lay2 = new MyLinearLayout(this);
 
        lay1.setBackgroundColor(this.getResources().getColor(android.R.color.darker_gray));
        lay2.setBackgroundColor(this.getResources().getColor(android.R.color.white));
        lay0 = new ContentLinearLayout(this);
        lay0.setOrientation(LinearLayout.VERTICAL);
        LinearLayout.LayoutParams p0 = new LinearLayout.LayoutParams
        (LinearLayout.LayoutParams.FILL_PARENT,LinearLayout.LayoutParams.FILL_PARENT);    
        this.setContentView(lay0, p0);
 
        LinearLayout.LayoutParams p1 = new LinearLayout.LayoutParams
        (LinearLayout.LayoutParams.FILL_PARENT,LinearLayout.LayoutParams.FILL_PARENT);    
        p1.weight=1;
        lay0.addView(lay1,p1);
        LinearLayout.LayoutParams p2 = new LinearLayout.LayoutParams
        (LinearLayout.LayoutParams.FILL_PARENT,LinearLayout.LayoutParams.FILL_PARENT);    
        p2.weight=1;
        lay0.addView(lay2,p2);
        MyButton btn1 = new MyButton(this);
        MyButton btn2 = new MyButton(this);
        btn1.setText("btn in layout1");
        btn2.setText("btn in layout2");
        btn1.setOnClickListener(new OnClickListener(){
            @Override
            public void onClick(View v) {
                    mScroller.startScroll(0, 0, -30, -30, 50);
                }
        });
        btn2.setOnClickListener(new OnClickListener(){
            @Override
            public void onClick(View v) {
                    mScroller.startScroll(20, 20, -50, -50, 50);
                }
        });
        lay1.addView(btn1);
        lay2.addView(btn2);
    }
    class MyButton extends Button
    {
     public MyButton(Context ctx)
     {
      super(ctx);
     }
     @Override
     protected void onDraw(Canvas canvas)
     {
      super.onDraw(canvas);
      Log.d("MyButton", this.toString() + " onDraw------");
     }
    }
    
    class MyLinearLayout extends LinearLayout
    {
     public MyLinearLayout(Context ctx)
     {
      super(ctx);
     }
     
     @Override
        /**
         * Called by a parent to request that a child update its values for mScrollX
         * and mScrollY if necessary. This will typically be done if the child is
         * animating a scroll using a {@link android.widget.Scroller Scroller}
         * object.
         */
        public void computeScroll() 
     {  
    Log.d(TAG, this.toString() + " computeScroll-----------");
    if (mScroller.computeScrollOffset())//如果mScroller没有调用startScroll,这里将会返回false。
    {  
        //因为调用computeScroll函数的是MyLinearLayout实例,
     //所以调用scrollTo移动的将是该实例的孩子,也就是MyButton实例
        scrollTo(mScroller.getCurrX(), 0); 
        Log.d(TAG, "getCurrX = " +  mScroller.getCurrX());

        //继续让系统重绘
        getChildAt(0).invalidate(); 
    }
     }
    }
    
    class ContentLinearLayout extends LinearLayout
    {
     public ContentLinearLayout(Context ctx)
     {
      super(ctx);
     }
     
     @Override
     protected void dispatchDraw(Canvas canvas)
     {
      Log.d("ContentLinearLayout", "contentview dispatchDraw");
      super.dispatchDraw(canvas);
     }
    }
}


    对代码做一个简单介绍:

    例子中定义了2个MyButton实例btn1和btn2,它们将被其父容器MyLinearLayout实例lay1和lay2通过调用scrollTo来移动。

  ContentLinearLayout实例lay0为Activity的contentview,它有2个孩子,分别是lay1和lay2。

   mScroller是一个封装位置和速度等信息的变量,startScroll()函数只是对它的一些成员变量做一些设置,这个设置的唯一效果就是导致mScroller.computeScrollOffset()    返回true。

      这里大家可能有个疑问,既然startScroll()只是虚晃一枪,那scroll的动态效果到底是谁触发的呢?

后面我将给出答案。

 

运行程序,我们来看看Log

点击btn1:

 

 

点击btn2:


   对照Log,我从button被点击开始,对整个绘制流程进行分析,首先button被点击(这里将回答上文的问题),button的背景将发生变化,这时button将调用invalidate()请求重绘,这就是View系统重绘的源头,即scroll动态效果的触发者。与此同时,mScroller.startScroll被调用了,mScroller在此时被设置了一些有效值。

   好了,既然重绘请求已发出了,那么整个View系统就会来一次自上而下的绘制了,首先输出的Log就是“contentview dispatchDraw”了,它将绘制需要重绘的孩子(lay1和lay2中的一个),接着会调用drawChild,使得computeScroll函数被触发(drawChild里面会调用child.computeScroll()),于是,lay1或者lay2就会以mScroller的位置信息为依据来调用scrollTo了,它的孩子btn1或者btn2就会被移动了。之后又调用了getChildAt(0).invalidate(),这将导致系统不断重绘,直到startScroll中设置的时间耗尽mScroller.computeScrollOffset()返回false才停下来。

   好了,现在整个流程都分析完了,相信大家应该清楚了Scroller类与View系统的关系了吧。理解了Scroller的工作原理,你会发现原来Scroller类并不神秘,甚至有点被动,它除了储存一些数值,什么其他的事情都没做,Scroller类中的一些变量mStartX, mFinalX, mDuration等等的意义也很好理解

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值