0

是否可以在 ListView 上禁用 android 涟漪效应?我已通过此功能在 iOS 上禁用它:

onItemLoading(args: any) {
   if (ios) {
      const cell = args.ios;
      cell.selectionStyle = UITableViewCellSelectionStyle.UITableViewCellSelectionStyleNone;
   } else if (android) {

   }
}

安卓上也可以吗?

4

1 回答 1

1

尝试在加载事件时在本机 android ListView 小部件上设置选择器。

onLoaded(event) { 
   if (event.object.android) {
     event.object.android.setSelector(new android.graphics.drawable.StateListDrawable());
   }
}
于 2019-10-30T16:22:37.873 回答