[TIMOB-11419] iOS: Accessibility: Label: On touch of Label and then double tap on screen the Label and Value are spoken again
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Closed |
Resolution | Won't Fix |
Resolution Date | 2012-10-12T18:05:53.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:33:51.000+0000 |
Updated | 2017-03-22T23:01:25.000+0000 |
Description
On touch of Label and then double tap on screen 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 Label
3. Double tap on the screen
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 Label = Ti.UI.createLabel({
text: "I Am Label 1",
accessibilityLabel: "Label 1.",
accessibilityValue: "Value1",
accessibilityHint: "Hint1",
top:50,
});
var Label2 = Ti.UI.createLabel({
text: "I Am Label 2",
accessibilityLabel: "Label 2.",
accessibilityValue: "Value2",
accessibilityHint: "Hint2",
top:100,
});
win.add(Label);
win.add(Label2);
win.open();
This is the expected VoiceOver behavior. We have no control over it.
Closing ticket as "Won't Fix".