本著針對面試,不負(fù)責(zé)任的態(tài)度,寫下《面試總結(jié)》系列虱颗。本系列記錄面試過程中各個知識點芳悲,而不是入門系列,如果有不懂的自行學(xué)習(xí)萎馅。
轉(zhuǎn)載請標(biāo)明出處,本文地址: http://www.reibang.com/p/a13458744a02
自定義View三種方式,組合現(xiàn)有控件熄浓,繼承現(xiàn)有控件,繼承View
本文只針對繼承View的方式省撑,另兩種自行學(xué)習(xí)赌蔑。
1. 重寫方法
onMeasure俯在、 onLayout、onDraw娃惯、onTouchEvent
onMeasure
可能多次觸發(fā)跷乐,在measure的過程中注意MeasureSpec,specMode石景、specSize
講到LinearLayout劈猿、RelativeLayout源碼
MeasureSpec
MeasureSpec,specMode潮孽、specSize
- EXACTLY
表示父布局希望子布局的大小應(yīng)該是由specSize的值來決定的揪荣,系統(tǒng)默認(rèn)會按照這個規(guī)則來設(shè)置子布局的大小,開發(fā)人員當(dāng)然也可以按照自己的意愿設(shè)置成任意的大小往史。
- AT_MOST
表示子布局最多只能是specSize中指定的大小仗颈,開發(fā)人員應(yīng)該盡可能小得去設(shè)置這個布局,并且保證不會超過specSize椎例。系統(tǒng)默認(rèn)會按照這個規(guī)則來設(shè)置子布局的大小挨决,開發(fā)人員當(dāng)然也可以按照自己的意愿設(shè)置成任意的大小。
- UNSPECIFIED
表示開發(fā)人員可以將布局按照自己的意愿設(shè)置成任意的大小订歪,沒有任何限制脖祈。這種情況比較少見,不太會用到刷晋。
childParams/parentMode | EXACTLY | AT_MOST | UNSPECIFIED |
---|---|---|---|
dp/px | EXACTLY(childsize) | EXACTLY(childsize) | EXACTLY(childsize) |
match_parent | EXACTLY(parentsize) | AT_MOST(parentsize) | UNSPECIFIED(0) |
wrap_content | AT_MOST(parentsize) | AT_MOST(parentsize) | UNSPECIFIED(0) |
上圖表摘自https://blog.csdn.net/singwhatiwanna/article/details/38426471
onLayout
在ViewGroup中盖高,只觸發(fā)一次,決定子View的位置
onDraw
繪制內(nèi)容眼虱,Canvas.drawxxx()喻奥,paint
onTouchEvent
處理點擊事件
2. 自定義view與viewgroup的區(qū)別
- onDraw(Canvas canvas)
View類中用于重繪的方法,這個方法是所有View捏悬、ViewGroup及其派生類都具有的方法,也是Android UI繪制最重要的方法撞蚕。開發(fā)者可重載該方法,并在重載的方法內(nèi)部基于參數(shù)canvas繪制自己的各種圖形过牙、圖像效果甥厦。
- onLayout()
重載該類可以在布局發(fā)生改變時作定制處理,這在實現(xiàn)一些特效時非常有用寇钉。View中的onLayout不是必須重寫的矫渔,ViewGroup中的onLayout()是抽象的,自定義ViewGroup必須重寫摧莽。
- dispatchDraw()
ViewGroup類及其派生類具有的方法庙洼,控制子View繪制分發(fā),重載該方法可改變子View的繪制,進(jìn)而實現(xiàn)一些復(fù)雜的視效油够,典型的例子可參見Launcher模塊Workspace的dispatchDraw重載蚁袭。
- drawChild()
ViewGroup類及其派生類具有的方法,直接控制繪制某局具體的子view石咬,重載該方法可控制具體某個具體子View揩悄。
3. View方法執(zhí)行過程
三次measure,兩次layout和一次draw
http://blog.csdn.net/u012422440/article/details/52972825
Android視圖樹的根節(jié)點是DecorView,而它是FrameLayout的子類鬼悠,所以就會讓其子視圖繪制兩次删性,所以onMeasure函數(shù)會先被調(diào)用兩次。
- onResume(Activity)
- onPostResume(Activity)
- onAttachedToWindow(View)
- onMeasure(View)
- onMeasure(View)
- onLayout(View)
- onSizeChanged(View)
- onMeasure(View)
- onLayout(View)
- onDraw(View)
- dispatchDraw()
4. invalidate()焕窝、postInvalidate()蹬挺、requestLayout()
invalidate()
/**
* Invalidate the whole view. If the view is visible,
* {@link #onDraw(android.graphics.Canvas)} will be called at some point in
* the future.
* <p>
* This must be called from a UI thread. To call from a non-UI thread, call
*/
public void invalidate() {
invalidate(true);
}
invalidate方法會執(zhí)行draw過程,重繪View樹它掂。
當(dāng)改變view的顯隱性巴帮、背景、狀態(tài)(focus/enable)等虐秋,這些都屬于appearance范疇榕茧,都會引起invalidate操作。需要更新界面顯示客给,就可以直接調(diào)用invalidate方法用押。
注意:
View(非容器類)調(diào)用invalidate方法只會重繪自身,ViewGroup調(diào)用則會重繪整個View樹靶剑。
postInvalidate()
/**
* <p>Cause an invalidate to happen on a subsequent cycle through the event loop.
* Use this to invalidate the View from a non-UI thread.</p>
*
* <p>This method can be invoked from outside of the UI thread
* only when this View is attached to a window.</p>
*/
public void postInvalidate() {
postInvalidateDelayed(0);
}
在子線程中被調(diào)用蜻拨,刷新UI。
requestLayout()
/**
* Call this when something has changed which has invalidated the
* layout of this view. This will schedule a layout pass of the view
* tree. This should not be called while the view hierarchy is currently in a layout
* pass ({@link #isInLayout()}. If layout is happening, the request may be honored at the
* end of the current layout pass (and then layout will run again) or after the current
* frame is drawn and the next layout occurs.
*
* <p>Subclasses which override this method should call the superclass method to
* handle possible request-during-layout errors correctly.</p>
*/
@CallSuper
public void requestLayout() {
}
當(dāng)View的寬高抬虽,發(fā)生了變化官觅,不再適合現(xiàn)在的區(qū)域纵菌,調(diào)用requestLayout方法重新對View布局阐污。
當(dāng)View執(zhí)行requestLayout方法,會向上遞歸到頂級父View中咱圆,再執(zhí)行這個頂級父View的requestLayout笛辟,所以其他View的onMeasure,onLayout也可能會被調(diào)用序苏。
3