Home | History | Annotate | Download | only in ui

Lines Matching defs:mode

30      * Saving and restoring a view mode work correctly.
45 * Register a listener for mode changes. Change a mode, and verify that the listener was
46 * called. Then unregister the listener and change the mode again. Verify that the listener
54 public void onViewModeChanged(int mode) {
59 ViewMode mode = new ViewMode();
61 mode.addListener(ears);
62 mode.enterConversationListMode();
64 mode.removeListener(ears);
65 mode.enterConversationMode();
70 * The view mode can transition to a state only if it isn't already in that state.
78 // Cannot transition to Conversation List mode. I'm in it already.