Remove Dream Overlay window name and update content descriptions.
This changelist sets the Dream Overlay window name to an empty string. Omitting the name causes the window to be attributed to SystemUI by Talkback for any visual element (status bar, complications) rather than the dream. This changelist also sets the content descriptions for a number of icons in the dream overlay. Test: manual Fixes: 267837462 Change-Id: Ic31d2c53d53a3e4c961cfc4e5a01245822b22b96 Merged-In: Ic31d2c53d53a3e4c961cfc4e5a01245822b22b96
This commit is contained in:
@@ -2829,4 +2829,19 @@
|
||||
[CHAR LIMIT=32]
|
||||
-->
|
||||
<string name="lock_screen_settings">Lock screen settings</string>
|
||||
|
||||
<!-- Content description for Wi-Fi not available icon on dream [CHAR LIMIT=NONE]-->
|
||||
<string name="wifi_unavailable_dream_overlay_content_description">Wi-Fi not available</string>
|
||||
|
||||
<!-- Content description for camera blocked icon on dream [CHAR LIMIT=NONE] -->
|
||||
<string name="camera_blocked_dream_overlay_content_description">Camera blocked</string>
|
||||
|
||||
<!-- Content description for camera and microphone blocked icon on dream [CHAR LIMIT=NONE] -->
|
||||
<string name="camera_and_microphone_blocked_dream_overlay_content_description">Camera and microphone blocked</string>
|
||||
|
||||
<!-- Content description for camera and microphone disabled icon on dream [CHAR LIMIT=NONE] -->
|
||||
<string name="microphone_blocked_dream_overlay_content_description">Microphone blocked</string>
|
||||
|
||||
<!-- Content description for priority mode icon on dream [CHAR LIMIT=NONE] -->
|
||||
<string name="priority_mode_dream_overlay_content_description">Priority mode on</string>
|
||||
</resources>
|
||||
|
||||
@@ -243,6 +243,8 @@ public class DreamOverlayService extends android.service.dreams.DreamOverlayServ
|
||||
*/
|
||||
private void addOverlayWindowLocked(WindowManager.LayoutParams layoutParams) {
|
||||
mWindow = new PhoneWindow(mContext);
|
||||
// Default to SystemUI name for TalkBack.
|
||||
mWindow.setTitle("");
|
||||
mWindow.setAttributes(layoutParams);
|
||||
mWindow.setWindowManager(null, layoutParams.token, "DreamOverlay", true);
|
||||
|
||||
|
||||
@@ -257,7 +257,8 @@ public class DreamOverlayStatusBarViewController extends ViewController<DreamOve
|
||||
mConnectivityManager.getActiveNetwork());
|
||||
final boolean available = capabilities != null
|
||||
&& capabilities.hasTransport(NetworkCapabilities.TRANSPORT_WIFI);
|
||||
showIcon(DreamOverlayStatusBarView.STATUS_ICON_WIFI_UNAVAILABLE, !available);
|
||||
showIcon(DreamOverlayStatusBarView.STATUS_ICON_WIFI_UNAVAILABLE, !available,
|
||||
R.string.wifi_unavailable_dream_overlay_content_description);
|
||||
}
|
||||
|
||||
private void updateAlarmStatusIcon() {
|
||||
@@ -294,13 +295,16 @@ public class DreamOverlayStatusBarViewController extends ViewController<DreamOve
|
||||
@DreamOverlayStatusBarView.StatusIconType int iconType = Resources.ID_NULL;
|
||||
showIcon(
|
||||
DreamOverlayStatusBarView.STATUS_ICON_CAMERA_DISABLED,
|
||||
!micBlocked && cameraBlocked);
|
||||
!micBlocked && cameraBlocked,
|
||||
R.string.camera_blocked_dream_overlay_content_description);
|
||||
showIcon(
|
||||
DreamOverlayStatusBarView.STATUS_ICON_MIC_DISABLED,
|
||||
micBlocked && !cameraBlocked);
|
||||
micBlocked && !cameraBlocked,
|
||||
R.string.microphone_blocked_dream_overlay_content_description);
|
||||
showIcon(
|
||||
DreamOverlayStatusBarView.STATUS_ICON_MIC_CAMERA_DISABLED,
|
||||
micBlocked && cameraBlocked);
|
||||
micBlocked && cameraBlocked,
|
||||
R.string.camera_and_microphone_blocked_dream_overlay_content_description);
|
||||
}
|
||||
|
||||
private String buildNotificationsContentDescription(int notificationCount) {
|
||||
@@ -313,11 +317,13 @@ public class DreamOverlayStatusBarViewController extends ViewController<DreamOve
|
||||
private void updatePriorityModeStatusIcon() {
|
||||
showIcon(
|
||||
DreamOverlayStatusBarView.STATUS_ICON_PRIORITY_MODE_ON,
|
||||
mZenModeController.getZen() != Settings.Global.ZEN_MODE_OFF);
|
||||
mZenModeController.getZen() != Settings.Global.ZEN_MODE_OFF,
|
||||
R.string.priority_mode_dream_overlay_content_description);
|
||||
}
|
||||
|
||||
private void showIcon(@DreamOverlayStatusBarView.StatusIconType int iconType, boolean show) {
|
||||
showIcon(iconType, show, null);
|
||||
private void showIcon(@DreamOverlayStatusBarView.StatusIconType int iconType, boolean show,
|
||||
int contentDescriptionResId) {
|
||||
showIcon(iconType, show, mResources.getString(contentDescriptionResId));
|
||||
}
|
||||
|
||||
private void showIcon(
|
||||
|
||||
Reference in New Issue
Block a user