是否可以在 ListView 上禁用 android 涟漪效应?我已通过此功能在 iOS 上禁用它:
onItemLoading(args: any) {
if (ios) {
const cell = args.ios;
cell.selectionStyle = UITableViewCellSelectionStyle.UITableViewCellSelectionStyleNone;
} else if (android) {
}
}
安卓上也可以吗?