To process simple touch events, you”ll override View method onTouchEvent, then use
constants from class ________ (package android.view) to test which type of event
occurred and process it accordingly.
When a View is inflated, its constructor is called with a(n) ________ and an
AttributeSet as arguments.
Games often require complex logic that should be performed in separate threads of
execution (that is, separate from the GUI thread) and those threads often need to draw
to the screen. For such cases, Android provides class ________a subclass of View to
which a thread can draw, then indicate that the results should be displayed in the GUI
thread.
Call Fragment Transaction method ________ to push a Fragment onto the back stack.
This allows the user to touch the back button to pop the Fragment from the back stack