Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-11419] iOS: Accessibility: Label: On touch of Label and then double tap on screen the Label and Value are spoken again

GitHub Issuen/a
TypeBug
PriorityLow
StatusClosed
ResolutionWon't Fix
Resolution Date2012-10-12T18:05:53.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:33:51.000+0000
Updated2017-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();

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 "Won't Fix".

JSON Source