Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-28167] Android: ListViewItem does not activate ripple effect from child views

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:45:54.000+0000
Updated2020-11-20T00:24:34.000+0000

Description

- Pressing on a child view within ListViewItem does not active the row ripple effect. *TEST*
const win = Ti.UI.createWindow({ backgroundColor: 'gray' });
const listView = Ti.UI.createListView({
	templates: {
		template: {
			properties: {
				backgroundColor: 'blue',
				height: 80
			},
			childTemplates: [
				{
					type: 'Ti.UI.Label',
					bindId: 'label',
					properties: {
						text: 'Pressing this should activate ripple',
						textAlign: Ti.UI.TEXT_ALIGNMENT_CENTER,
						backgroundColor: 'red',
						width: '80%',
						height: '80%'
					}
				}
			]
		}
	},
	defaultItemTemplate: 'template'
});

listView.sections = [
	Ti.UI.createListSection({ items: [ {} ] })
];

win.add(listView);
win.open();
*EXPECTED* - ListViewItem shows ripple effect anywhere the row is tapped, including child views. *ACTUAL* - ListViewItem does not display ripple effect when child view is tapped.

Comments

  1. Gary Mathews 2020-10-26

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

JSON Source