Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-28164] Android: TableViewRow displays incorrect background upon press

GitHub Issuen/a
TypeBug
PriorityMedium
StatusClosed
ResolutionUnresolved
Affected Version/sn/a
Fix Version/sRelease 9.3.0
ComponentsAndroid
Labelsn/a
ReporterGary Mathews
AssigneeGary Mathews
Created2020-10-05T01:27:01.000+0000
Updated2020-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

FileDateSize
row_press.jpg2020-10-05T01:29:34.000+000024078

Comments

  1. Gary Mathews 2020-10-26

    master: https://github.com/appcelerator/titanium_mobile/pull/12029

JSON Source