Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-11425] Android: Accessibility: Default text for table view, behind an open window, is spoken when app sent to background and opened again

GitHub Issuen/a
TypeBug
PriorityLow
StatusReopened
ResolutionUnresolved
Affected Version/sRelease 3.0.0, Release 3.1.0
Fix Version/sn/a
ComponentsAndroid
Labelsqe-and100112, qe-nfc
ReporterSatyam Sekhri
AssigneeUnknown
Created2012-10-12T15:04:59.000+0000
Updated2018-02-28T20:04:16.000+0000

Description

The default text of the tableview, which is behind the window, is spoken when the application is sent to background and then opened again. This does not happen on iOS Steps to Reproduce: 1. Open the application below with Talk Back ON 2. Click on Row 1 in tableview to open up a window with label 3. Background the app 4. Open the app again Actual: The app comes into focus showing the opened window with label, however the talk back speaks the default text on Table View "List showing Two Items" Expected: The text related to tableview should not be spoken as it is behind the window
var win = Ti.UI.createWindow({
    title : 'Welcome',
    backgroundColor: "#fff"
});
		var row1=Ti.UI.createTableViewRow({
			title:'Row 1',
			
		});
		var row2=Ti.UI.createTableViewRow({
			title:'Row 2',
			
		});
		var data = [row1,row2];
		var table=Ti.UI.createTableView({data:data});
 row1.addEventListener('click',function(e){
 	var win2=Ti.UI.createWindow({backgroundColor: "#fff"});
 	var label=Ti.UI.createLabel({text: 'I Am Label 1'});
 	win2.add(label);
 	win2.open();
 });
 win.add(table);
win.open();

Comments

  1. Ingo Muschenetz 2012-10-12

    According to Bill, likely "won't fix"
  2. jithinpv 2013-03-12

    Issue reproduces on long press tested with Titanium Studio, build: 3.0.1.201212181159 Titanium SDK version: 3.1.0 (03/11/13 15:43 0c88429) Titanium SDK version: 3.0.2 (02/07/13 16:46 a4def81) Device: Samsung galaxy s duos Android version: 4.0.4

JSON Source