Home | History | Annotate | Download | only in com.example.android.wearable.speaker

Lines Matching refs:UIState

44     private UIState mState = UIState.HOME;
130 mState = UIState.getUIState(index);
173 mState = UIState.HOME;
191 public enum UIState {
195 UIState(int state) {
199 static UIState getUIState(int state) {
200 for(UIState uiState : values()) {
201 if (uiState.mState == state) {
202 return uiState;
210 void onUIStateChanged(UIState state);
214 if (mState == UIState.HOME) {