英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论