android之View的啓動過程

程序裏調用了onSizeChanged方法進行了一些設置,不知道onSizeChanged是在何時啓動的,因此研究了一下View的啓動流程java

代碼以下:canvas

[java] view plaincopyprint?ide

  1. public class TestView extends View {  spa

  2.   

  3.     public TestView(Context context) {  .net

  4.         super(context);  orm

  5.         Log.d("mDebug""TestView context");  blog

  6.     }  get

  7.   

  8.          public TestView(Context context, AttributeSet attrs) {  it

  9.                  super(context, attrs);  class

  10.                  Log.d("mDebug""TestView context, attrs="+attrs.getAttributeValue(0));  

  11.          }    

  12.       

  13.     public TestView(Context context, AttributeSet attrs, int defStyle) {  

  14.         super(context, attrs, defStyle);  

  15.         Log.d("mDebug""TestView context,attrs,defStyle attrs="+attrs.getAttributeValue(0));  

  16.     }  

  17.   

  18.   

  19.       

  20.     @Override  

  21.     protected void onDraw(Canvas canvas) {  

  22.         super.onDraw(canvas);  

  23.         Log.d("mDebug""onDraw");  

  24.     }  

  25.   

  26.     @Override  

  27.     protected void onFinishInflate() {  

  28.         super.onFinishInflate();  

  29.         Log.d("mDebug""onFinishInflate");  

  30.     }  

  31.   

  32.   

  33.   

  34.     @Override  

  35.     protected void onSizeChanged(int w, int h, int oldw, int oldh) {  

  36.         super.onSizeChanged(w, h, oldw, oldh);  

  37.         Log.d("mDebug""onSizeChanged,w="+w+",h="+h+",oldw="+oldw+",oldh="+oldh);  

  38.     }  

  39.   

  40. }  

輸出以下:

[java] view plaincopyprint?

  1. 22:23:03.587: D/mDebug(9715): TestView context, attrs=@2131034112  

  2. 22:23:03.597: D/mDebug(9715): onFinishInflate  

  3. 22:23:03.667: D/mDebug(9715): onSizeChanged,w=720,h=1080,oldw=0,oldh=0  

  4. 22:23:03.727: D/mDebug(9715): onDraw  

  5. 22:23:03.757: D/mDebug(9715): onDraw  

很顯然,onSizeChanged的啓動時間在onDraw以前

相關文章
相關標籤/搜索