Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-11420] iOS: Accessibility: The Accessibility Hint text is voiced over with a small time lag after Label and Value

GitHub Issuen/a
TypeBug
PriorityLow
StatusClosed
ResolutionInvalid
Resolution Date2012-10-14T06:48:44.000+0000
Affected Version/sRelease 3.0.0
Fix Version/sn/a
ComponentsiOS
Labelscore, qe-ios100112, qe-nfc
ReporterSatyam Sekhri
AssigneeMax Stepanov
Created2012-10-12T13:38:44.000+0000
Updated2017-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();

Comments

  1. Max Stepanov 2012-10-14

    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.
  2. Lee Morris 2017-03-23

    Closing ticket as invalid with reference to the above comments.

JSON Source