[TIMOB-11464] Android: Accessibility: TableViewSection: Accessibility does not work on TableViewSection
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Closed |
Resolution | Won't Fix |
Resolution Date | 2012-10-15T13:20:34.000+0000 |
Affected Version/s | Release 3.0.0 |
Fix Version/s | n/a |
Components | Android |
Labels | qe-and100112, qe-nfc |
Reporter | Neha Chhabra |
Assignee | Ingo Muschenetz |
Created | 2012-10-13T11:42:36.000+0000 |
Updated | 2017-03-21T18:04:10.000+0000 |
Description
Accessibility does not work on TableViewSection
Steps To Reproduce:
1. Install and launch the application with Talk back enabled.
2. Touch the Header2 or Footer2
Expected result:
The Label Value and Hint should be spoken by the device
Actual result:
The default text is spoken but not the Label, Value and Hint defined.
app.js
var win = Ti.UI.createWindow({
title : 'Welcome',
backgroundColor: "#fff"
});
var section2 = Ti.UI.createTableViewSection({
headerTitle:'Header 2',
footerTitle:'Footer2',
accessibilityLabel:'Table Section 2',
accessibilityValue:'Section 2',
accessibilityHint:'Hint for Section 2 '
});
var row2=Ti.UI.createTableViewRow({
title:'Row 2',
hasCheck:true,
accessibilityLabel: 'Second Option',
accessibilityValue: 'Checked',
accessibilityHint: 'The cheked sign on right'
});
section2.add(row2);
var data = [section2];
var table=Ti.UI.createTableView({data:data});
win.add(table);
win.open();
There's no analog to a "table view section" in Android, so there is no Android view to apply the contentDescription to. Won't fix.
Closing ticket as the issue will not fix.