[TIMOB-11420] iOS: Accessibility: The Accessibility Hint text is voiced over with a small time lag after Label and Value
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Closed |
Resolution | Invalid |
Resolution Date | 2012-10-14T06:48:44.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:38:44.000+0000 |
Updated | 2017-03-23T20:46:04.000+0000 |
Description
There is a small time lag before the accessibility Hint is voiced over. The Label and Value are spoken properly. On Android all the three text i.e. LVH are spoken properly
Steps To Reproduce:
1. Open the application below with voice over ON
2. Touch the Label
Actual: There is a small time lag after the Accessibility Value and before the Accessibility Hint
Expected: There should not be a time lag between Value and Hint text
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();
A small delay between values is expected iOS behavior. Some special handling has been done on Android to match this behavior, but not completely due to platform limitations.
Closing ticket as invalid with reference to the above comments.