Merge "Remove title change for IME steps" into oc-dev
am: fd3fb0cafb

Change-Id: I99d7e9b8f49b70532632b9e13887c75a418e1fe0
diff --git a/Settings/src/com/android/tv/settings/connectivity/setup/WifiSetupActivity.java b/Settings/src/com/android/tv/settings/connectivity/setup/WifiSetupActivity.java
index 0b9594a..4d8d876 100644
--- a/Settings/src/com/android/tv/settings/connectivity/setup/WifiSetupActivity.java
+++ b/Settings/src/com/android/tv/settings/connectivity/setup/WifiSetupActivity.java
@@ -581,7 +581,6 @@
             case CONNECT:
             case CONNECT_FAILED:
             case CONNECT_TIMEOUT:
-            case ENTER_PASSWORD:
             case KNOWN_NETWORK:
             case SAVE:
             case SAVE_FAILED:
@@ -593,6 +592,14 @@
                 // talkback from announcing a misplaced title.
                 setTitle("");
                 return;
+            case ENTER_PASSWORD:
+                // IME screen; Let the IME handle announcements.
+                setTitle("");
+                return;
+            case ENTER_SSID:
+                // IME screen; Let the IME handle announcements.
+                setTitle("");
+                return;
             default:
                 setTitle(getResources().getString(pageType.getTitleResourceId()));
                 break;