Is possible to disable android ripple effect on ListView? I have disabled it on iOS by this function:
onItemLoading(args: any) {
if (ios) {
const cell = args.ios;
cell.selectionStyle = UITableViewCellSelectionStyle.UITableViewCellSelectionStyleNone;
} else if (android) {
}
}
Is it possible on android too?