Android 移除 setOnGenericMotionListener()

huangapple go评论109阅读模式
英文:

Android remove setOnGenericMotionListener()

问题

如何移除 setOnGenericMotionListener()

view.setOnGenericMotionListener(this);

谢谢

英文:

how to remove setOnGenericMotionListener() ?

view.setOnGenericMotionListener(this);

Thanks

答案1

得分: 0

这应该可以工作,取决于您的用例。

view.setEnabled(false);

另一种方法可能是在OnGenericMotionListener中进行覆盖,什么都不做。

编辑:正如@Slaw所提到的,view.setOnGenericMotionListener(null) 也可以工作,如果我要猜的话,这可能是您想要使用的。

英文:

This should work, depending on your use-case.

view.setEnabled(false);

An alternative could be making the overrides in the OnGenericMotionListener do nothing.

EDIT: As mentioned by @Slaw, view.setOnGenericMotionListener(null) also works, and if I had to guess is probably what you want to use.

huangapple
  • 本文由 发表于 2023年6月9日 04:45:34
  • 转载请务必保留本文链接:https://go.coder-hub.com/76435572.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定