简体   繁体   中英

android call stack interpretation

Thread [<3> main] (Suspended (breakpoint at line 12 in MyContentView))
MyContentView.onDraw(Canvas) line: 12
MyContentView(View).draw(Canvas) line: 6535
FrameLayout(ViewGroup).drawChild(Canvas, View, long) line: 1531
FrameLayout(ViewGroup).dispatchDraw(Canvas) line: 1258
FrameLayout(View).draw(Canvas) line: 6538 

What do those in brackets mean? eg FrameLayout(ViewGroup) and FrameLayout(View) ?

FrameLayout(ViewGroup).dispatchDraw(Canvas) line: 1258 

dispatchDraw method inherited from ViewGroup is getting called.

FrameLayout(View).draw(Canvas) line: 6538   

draw(..) inherited method from View class is getting called

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM