Lauren Bricker
CSE 340 Spring 2020
onDraw
is usually pre-order (Intuitively leaf nodes should be 'on top' of parents)Input
Output
onDraw()
)onLayout()
or XML
)Wait for Event
Dispatch may cause change to:
What do you need to know though? Mostly only if you are a component developer
Wait for Event
Dispatch may cause change to:
Implement event handler (e.g. onTouch()
)
Handle Dispatch
invalidate()
What do you need to know though? Mostly only if you are a component developer
What about if you are an app developer? Basically, just use callbacks
If damage do
If damage do
onMeasure()
and onLayout()
(if a container)onDraw()
but never call it (call invalidate()
instead)How does the toolkit know what to redraw?
What causes damage?
concrete example on next slide
What should be redrawn?
What should be redrawn?
What should be redrawn?
How does the toolkit know what to redraw?
What causes damage?
Can you think about other things?
How does the toolkit know what to redraw?
What causes damage?
Naive approach to redraw
Can you think about other things?
XXX TODO ADD pic like this using divs?
Never just draw: Why not?
How does the toolkit know what to redraw?
invalidate()
or equivalentHow does the toolkit know what to redraw?
invalidate()
) NOTE we are not calling onDraw() directly (important for your assignment)Virtual device abstraction provided by windowing system
Component abstraction provided by toolkit
Drawing is recursive
Allows each program to (mostly) pretend that it has the screen (frame buffer) to itself
Allows each component to (mostly) pretend that it has the screen to itself
If damage do
Essential geometry is:
and methods for
indentButton()
(when button is pressed)normalButton()
(when button is not pressed)invokeAction()
(when the user releases in the button)cancelAction()
(when the user releases outside the button)Essential geometry is:
and methods for
indentButton()
(when button is pressed)normalButton()
(when button is not pressed)invokeAction()
(when the user releases in the button)cancelAction()
(when the user releases outside the button)onTouch()
using a switch statementessentialGeometry(MotionEvent event)
method. It returns a enum that tells you what
part of the geometry you are in for that point.state
which is the current state of the state machineEssentialGeometry
and State
for comparing against@Overridepublic boolean onTouch(MotionEvent e) { EssentialGeometry geometry = essentialGeometry(event); switch (state) { case State.START: if (geometry == Geometry.INSIDE && e.getAction() == MotionEvent.ACTION_DOWN) { indentButton(); state = State.PRESSED; return true; } break; case PRESSED if (e.getAction() == MotionEvent.ACTION_MOVE) { if (geometry == Geometry.INSIDE) { indentButton(); } else { normalButton(); } return true; } else if (e.getAction() == MotionEvent.ACTION_UP) { state = State.START; // note we don't actually use the END state if (geometry == Geometry.INSIDE) { invokeAction(); } else { cancelAction(); } return true; } break; default: break; } return false;}
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
s | Start & Stop the presentation timer |
t | Reset the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |