Question

Which of the following statements is false?
a. You can make your app to display something for a few seconds then move on by using a Handler.
b. Handler method postDelayed receives as arguments a Runnable to execute and a delay in milliseconds.
c. After the delay has passed, the Handler's Runnable executes in the same thread that created the Handler.
d. Operations that interact with or modify the GUI must be performed in the GUI thread, because GUI components are thread safe.

Answer

This answer is hidden. It contains 144 characters.