1.java
onFinishInflate() 當View中全部的子控件均被映射成xml後觸發
onMeasure(
int
,
int
) 肯定全部子元素的大小
onLayout(
boolean
,
int
,
int
,
int
,
int
) 當View分配全部的子元素的大小和位置時觸發
onSizeChanged(
int
,
int
,
int
,
int
) 當view的大小發生變化時觸發
onDraw(Canvas) view渲染內容的細節
onKeyDown(
int
, KeyEvent) 有按鍵按下後觸發
onKeyUp(
int
, KeyEvent) 有按鍵按下後彈起時觸發
onTrackballEvent(MotionEvent) 軌跡球事件
onTouchEvent(MotionEvent) 觸屏事件
onFocusChanged(
boolean
,
int
, Rect) 當View獲取或失去焦點時觸發
onWindowFocusChanged(
boolean
) 當窗口包含的view獲取或失去焦點時觸發
onAttachedToWindow() 當view被附着到一個窗口時觸發
onDetachedFromWindow() 當view離開附着的窗口時觸發,該方法和 onAttachedToWindow() 是相反。
onWindowVisibilityChanged(
int
) 當窗口中包含的可見的view發生變化時觸發
android
2.
canvas
由 new GameView(context) 生成的View的回調順序ide
LogUtils:GameView.onDetachedFromWindow(L:26)
LogUtils:GameView.<init>(L:14)
LogUtils:GameView.onAttachedToWindow(L:21)
LogUtils:GameView.onMeasure(L:55)
LogUtils:GameView.onSizeChanged(L:33)
LogUtils:GameView.onLayout(L:63)
LogUtils:GameView.onMeasure(L:55)
LogUtils:GameView.onLayout(L:63)
LogUtils:GameView.onDraw(L:47)
LogUtils:GameView.onMeasure(L:55)
LogUtils:GameView.onLayout(L:63)code
由 xml文件生成的View的回調順序xml
LogUtils:GameView.<init>(L:33)
LogUtils:GameView.onFinishInflate(L:61)
LogUtils:GameView.onAttachedToWindow(L:42)
LogUtils:GameView.onMeasure(L:76)
LogUtils:GameView.onSizeChanged(L:54)
LogUtils:GameView.onLayout(L:84)
LogUtils:GameView.onMeasure(L:76)
LogUtils:GameView.onLayout(L:84)
LogUtils:GameView.onDraw(L:68)
LogUtils:GameView.onMeasure(L:76)
LogUtils:GameView.onLayout(L:84)事件
package com.maintain; import lib.util.log.LogUtils; import android.content.Context; import android.graphics.Canvas; import android.util.AttributeSet; import android.view.View; public class GameView extends View { public GameView(Context context) { super(context); LogUtils.d(null); } public GameView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); LogUtils.d(null); } public GameView(Context context, AttributeSet attrs) { super(context, attrs); LogUtils.d(null); } @Override protected void onAttachedToWindow() { super.onAttachedToWindow(); LogUtils.d(null); } protected void onDetachedFromWindow() { LogUtils.d(null); }; @Override protected void onSizeChanged(int w, int h, int oldw, int oldh) { super.onSizeChanged(w, h, oldw, oldh); LogUtils.d(null); } @Override protected void onFinishInflate() { super.onFinishInflate(); LogUtils.d(null); } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); LogUtils.d(null); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { // TODO Auto-generated method stub super.onMeasure(widthMeasureSpec, heightMeasureSpec); LogUtils.d(null); } @Override protected void onLayout(boolean changed, int left, int top, int right, int bottom) { super.onLayout(changed, left, top, right, bottom); LogUtils.d(null); } }