SlideShare a Scribd company logo
View的大小事
Charlie Tsai
Charlie Tsai@Android Study Group
cha122977@gmail.com
Individual App Developer &
System Software Engineer@NVIDIA (will quit in Sep.)
Today’s source code
https://github.com/chatea/ViewDemo
Agenda
• View & ViewGroup
• Mechanism of View
• Live debugging
• Free topics :D
View
• Attached to window / Detached from window
• Measure
• Layout
• Draw
ViewGroup
• ViewGroup extend View (composition pattern)
• The draw functions are different:
• View.onDraw(Canvas);
• ViewGroup.dispatchDraw(Canvas);
Mechanism of View
• What does View do?
• What does View NOT do?
• Need to attach to Window
• measure: analysis the size of view
• layout: determine the position and size of view
• draw: real function to render the View
Mechanism of View
• Draw from parent, then to children
• Canvas is given by Android framework
• Cost of overlay?
Attach / Detach
• onAttachedToWindow() / onDetachedFromWindow()
• What is Window?
• WindowManager
• ViewRootImpl (composition pattern)
• interactive with WindowManager
• performTraversals() & scheduleTraversals()
• own the Surface and send Canvas to View
Measure
• How big this View should be?
• void onMeasure(int, int)
• setMeasuredDimension(int, int)
Ex: Square View
Layout
• Assign the size and position to self and all
descendants
• onLayout(boolean changed, l, t, r b)
• addOnLayoutChangeListener(…)
Draw
• Should I use super.onDraw(Canvas)?
• View.onDraw(): hook for customized drawing
• Why ViewGroup.dispatchDraw()?
Live Debugging
Let’s Go Deeper…
Hardware Acceleration
• View.setLayerType(…)
• LAYER_TYPE_NONE
• LAYER_TYPE_HARDWARE
• LAYER_TYPE_SOFTWARE
Hardware Acceleration
• save() -> setXXX -> draw -> restore()
• setXXX - a function which doesn’t effect the
content
• e.g. setX(), setY(), setRotation()…
SurfaceView
• SurfaceView doesn’t render from parent
• System directly maintain its Canvas
• Transparent SurfaceView?
• SurfaceView.setZOrderOnTop()
• SurfaceView.getHolder().setFormat(PixelForm
at.TRANSPARENT);
固定聚會:每週三@果子咖啡(近捷運南京復興站)
技術分享:每月底週六14:30 - 17:30
以及眾多不定期活動(ex: Workshop)
Questions?
Thanks!

More Related Content

PDF
Virtual edinburgh mobilemaker - pechakucha
PDF
Railsフロントエンドの modernizeにおける一事例 ~decaffeinateからES2015移行まで~
PDF
Sinatraで触れる生SQL
PPTX
OpenGL ES EGL Spec&APIs
PDF
Understaing Android EGL
PDF
Android drawing and graphics API
PDF
Android drawing and graphics api
PPTX
Advanced #2 - ui perf
Virtual edinburgh mobilemaker - pechakucha
Railsフロントエンドの modernizeにおける一事例 ~decaffeinateからES2015移行まで~
Sinatraで触れる生SQL
OpenGL ES EGL Spec&APIs
Understaing Android EGL
Android drawing and graphics API
Android drawing and graphics api
Advanced #2 - ui perf

Similar to Introduction of Android View (11)

PPTX
Android Custom Views
PDF
[Android] 2D Graphics
PDF
Enhancing UI/UX using Java animations
PPTX
It's the arts! Playing around with the Android canvas
PPTX
Android Custom views
DOCX
Android canvas-chapter20
PPTX
Performance #3 layout&animation
PDF
Th 0230 turbo_chargeyourui-howtomakeyourandroidu_ifastandefficient
PDF
How to Become the MacGyver of Android Custom Views
PDF
Breathing the life into the canvas
PDF
custom view
Android Custom Views
[Android] 2D Graphics
Enhancing UI/UX using Java animations
It's the arts! Playing around with the Android canvas
Android Custom views
Android canvas-chapter20
Performance #3 layout&animation
Th 0230 turbo_chargeyourui-howtomakeyourandroidu_ifastandefficient
How to Become the MacGyver of Android Custom Views
Breathing the life into the canvas
custom view
Ad

More from Charile Tsai (6)

PPTX
Android AIDL Concept
PPTX
Android Thread
PPTX
Android Transition
PPTX
Android Service
PPTX
Android Animator
PPTX
Git rebase -i
Android AIDL Concept
Android Thread
Android Transition
Android Service
Android Animator
Git rebase -i
Ad

Recently uploaded (20)

PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
Softaken Excel to vCard Converter Software.pdf
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PPTX
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
System and Network Administraation Chapter 3
PPTX
Computer Software and OS of computer science of grade 11.pptx
PPTX
L1 - Introduction to python Backend.pptx
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
top salesforce developer skills in 2025.pdf
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
Digital Strategies for Manufacturing Companies
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Operating system designcfffgfgggggggvggggggggg
Softaken Excel to vCard Converter Software.pdf
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
How to Choose the Right IT Partner for Your Business in Malaysia
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
CHAPTER 2 - PM Management and IT Context
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Navsoft: AI-Powered Business Solutions & Custom Software Development
System and Network Administraation Chapter 3
Computer Software and OS of computer science of grade 11.pptx
L1 - Introduction to python Backend.pptx
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 41
top salesforce developer skills in 2025.pdf
Design an Analysis of Algorithms I-SECS-1021-03
Digital Strategies for Manufacturing Companies
How to Migrate SBCGlobal Email to Yahoo Easily
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf

Introduction of Android View