Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[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 Issuen/a
TypeBug
PriorityMedium
StatusClosed
ResolutionWon't Fix
Resolution Date2012-10-12T18:05:07.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:22:28.000+0000
Updated2017-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();

Comments

  1. Max Stepanov 2012-10-12

    This is the expected VoiceOver behavior. We have no control over it.
  2. Lee Morris 2017-03-22

    Closing ticket as the issue will not fix and with reference to the above comments.

JSON Source