[TIMOB-28164] Android: TableViewRow displays incorrect background upon press
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Medium |
Status | Closed |
Resolution | Unresolved |
Affected Version/s | n/a |
Fix Version/s | Release 9.3.0 |
Components | Android |
Labels | n/a |
Reporter | Gary Mathews |
Assignee | Gary Mathews |
Created | 2020-10-05T01:27:01.000+0000 |
Updated | 2020-11-20T00:24:41.000+0000 |
Description
- Pressing on a
TableViewRow
results in a incorrect row color.
*TEST*
const win = Ti.UI.createWindow({ backgroundColor: 'gray' });
const row = Ti.UI.createTableViewRow({
height: 80,
title: 'Row should not dull upon press',
backgroundColor: 'blue'
});
const table = Ti.UI.createTableView({
data: [ row ]
});
win.add(table);
win.open();
*EXPECTED*
- TableViewRow
shows ripple animation over specified backgroundColor
.
*ACTUAL*
- TableViewRow
changes background to an unexpected color.
Attachments
File | Date | Size |
---|---|---|
row_press.jpg | 2020-10-05T01:29:34.000+0000 | 24078 |
master: https://github.com/appcelerator/titanium_mobile/pull/12029