[TIMOB-28572] Android: TableView fails to render drawable on API 25
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Critical |
Status | Closed |
Resolution | Fixed |
Resolution Date | 2021-10-28T19:40:21.000+0000 |
Affected Version/s | Release 10.1.0 |
Fix Version/s | Release 10.1.1 |
Components | Android |
Labels | n/a |
Reporter | Gary Mathews |
Assignee | Gary Mathews |
Created | 2021-10-28T17:05:44.000+0000 |
Updated | 2021-11-17T10:55:46.000+0000 |
Description
- TableView fails to render selected drawable on Android 7.1 due to a
ShapeDrawable
issue resolved in Android 8.0
*TEST CASE*
const win = Ti.UI.createWindow();
const table = Ti.UI.createTableView({
data: [ { title: 'row 1' } ]
});
win.add(table);
win.open();
master: https://github.com/appcelerator/titanium_mobile/pull/13151
Backport PR: https://github.com/appcelerator/titanium_mobile/pull/13182