[TIMOB-11418] iOS: Accessibility: Button: On touch of Button and then double tap (to effectively click the button) the Label and Value are spoken again
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Medium |
Status | Closed |
Resolution | Won't Fix |
Resolution Date | 2012-10-12T18:05:07.000+0000 |
Affected Version/s | Release 3.0.0 |
Fix Version/s | n/a |
Components | iOS |
Labels | core, qe-ios100112, qe-nfc |
Reporter | Satyam Sekhri |
Assignee | Max Stepanov |
Created | 2012-10-12T13:22:28.000+0000 |
Updated | 2017-03-22T18:27:57.000+0000 |
Description
On touch of Button and then double click (to effectively click the button) the Label and Value are spoken again. This does not happen on Android
Steps To Reproduce:
1. Open the application below with voice over ON
2. Touch the Button
3. Double tap to click the button
Actual: The accessibility Label and Value defined are spoken
Expected: The accessibility text should be spoken only on touch and not on click
win = Ti.UI.createWindow({
title: "Events",
layout: "vertical",
backgroundColor: "#fff"
});
var Button = Ti.UI.createButton({
title: "Click Me",
accessibilityLabel: "Button 1.",
accessibilityValue: "Value1",
accessibilityHint: "Hint1",
top:50,
});
win.add(Button);
win.open();
This is the expected VoiceOver behavior. We have no control over it.
Closing ticket as the issue will not fix and with reference to the above comments.